From a4257a5619bdd543bb5fd3bc6d366c8b94f7e1de Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Fri, 26 Apr 2024 15:41:24 -0400 Subject: [PATCH] core: refactor medication tables to use modern denormalization core__medication: - Template cleanup to use standard denorm tables rather than custom extraction code. - If contained resources provide actual codes, we pull them out now (previously we only looked at the contained Concept.text) - No longer pull Concept.text from contained Medications, until we decide on an approach for Concept.text across the board) core__medicationrequest: - No longer ignores rows without dosageInstruction.text General CodeableConcept denormalization: - Add userSelected boolean field to all denorm tables - Allow the Python code to request extra fields to include along with the coding information (used for capturing contained.id fields) Misc: - Depend on cumulus-fhir-support 1.1 for its contained schema support --- cumulus_library/.sqlfluff | 22 +- .../studies/core/builder_medication.py | 158 +- .../studies/core/builder_medicationrequest.py | 6 - .../core/core_templates/medication.sql.jinja | 261 +- .../medicationrequest.sql.jinja | 32 +- .../core/reference_sql/builder_condition.sql | 177 +- .../builder_documentreference.sql | 36 +- .../core/reference_sql/builder_encounter.sql | 247 +- .../core/reference_sql/builder_medication.sql | 156 +- .../builder_medicationrequest.sql | 74 +- .../reference_sql/builder_observation.sql | 104 +- .../template_sql/base_templates.py | 1 + .../codeable_concept_denormalize.sql.jinja | 83 +- .../shared_macros/unnest_utils.jinja | 5 +- cumulus_library/template_sql/sql_utils.py | 34 +- pyproject.toml | 2 +- tests/core/test_core.py | 55 +- tests/core/test_core_meds.py | 117 + tests/core/test_core_observation.py | 15 + .../core__count_medicationrequest_month.csv | 6234 +++++++++++------ ...ore__count_medicationrequest_month.parquet | Bin 22863 -> 29156 bytes tests/test_cli.py | 2 +- .../core__count_medicationrequest_month.txt | 16 +- .../core/core__medicationrequest.txt | 19 + .../core__count_medicationrequest_month.csv | 16 +- tests/test_templates.py | 50 +- tests/testbed_utils.py | 58 +- 27 files changed, 5055 insertions(+), 2925 deletions(-) create mode 100644 tests/core/test_core_meds.py diff --git a/cumulus_library/.sqlfluff b/cumulus_library/.sqlfluff index 4716363a..447cef8b 100644 --- a/cumulus_library/.sqlfluff +++ b/cumulus_library/.sqlfluff @@ -61,14 +61,6 @@ column_name = 'bar' column_names = ['foo', 'bar'] conditions = ["1 > 0", "1 < 2"] column_hierarchy = [('a', list),('b',dict)] -config = - { - "medication_datasources" : { - "by_contained_ref" : True, - "by_external_ref" : True - }, - 'has_userselected': False - } count_ref = count_ref count_table = count_table dataset = @@ -79,7 +71,11 @@ dataset = db_type = duckdb dependent_variable = is_flu ext_systems = ["omb", "text"] +extra_alias_done = True +extra_field = ("field", "alias") +extra_fields = [("field", "alias")] field = 'column_name' +field_alias = 'field' filter_table = filter_table filter_resource = True fhir_extension = condition @@ -158,7 +154,13 @@ schema = 'authoredOn': True, 'category': { 'code': True, 'system': True, 'display': False - }, + }, + 'dosageInstruction': { + 'text': True, + }, + 'medicationReference': { + 'reference': True + }, 'subject': { 'reference': True }, @@ -199,7 +201,7 @@ schema = 'encounter': { 'reference': True } - }, + }, 'patient': { 'id': True, 'gender': True, diff --git a/cumulus_library/studies/core/builder_medication.py b/cumulus_library/studies/core/builder_medication.py index a788c800..61b64784 100644 --- a/cumulus_library/studies/core/builder_medication.py +++ b/cumulus_library/studies/core/builder_medication.py @@ -1,90 +1,22 @@ """ Module for generating core medication table""" -from cumulus_library import base_table_builder, base_utils, databases +from cumulus_library import base_table_builder, databases from cumulus_library.studies.core.core_templates import core_templates -from cumulus_library.template_sql import base_templates, sql_utils +from cumulus_library.template_sql import sql_utils + +expected_table_cols = { + "medicationrequest": { + "id": [], + "subject": sql_utils.REFERENCE, + "encounter": sql_utils.REFERENCE, + "medicationReference": sql_utils.REFERENCE, + } +} class MedicationBuilder(base_table_builder.BaseTableBuilder): display_text = "Creating Medication table..." - def _check_data_in_fields(self, cursor, parser, schema: str): - """Validates whether either observed medication source is present - - We opt to not use the core_templates.utils based version of - checking for data fields, since Medication can come in from - a few different sources - the format is unique to this FHIR - resource. - """ - - data_types = { - "inline": False, - "by_contained_ref": False, - "by_external_ref": False, - } - - table = "medicationrequest" - inline_col = "medicationcodeableconcept" - with base_utils.get_progress_bar(transient=True) as progress: - task = progress.add_task( - "Detecting available medication sources...", - total=3, - ) - - # inline medications from FHIR medication - data_types["inline"] = sql_utils.is_field_populated( - schema=schema, - source_table=table, - hierarchy=[(inline_col, dict), ("coding", list)], - cursor=cursor, - parser=parser, - ) - if data_types["inline"]: - query = base_templates.get_column_datatype_query( - schema, table, [inline_col] - ) - cursor.execute(query) - progress.advance(task) - if "userselected" not in str(cursor.fetchone()[0]): - has_userselected = False - else: - has_userselected = True - else: - has_userselected = False - progress.advance(task) - # Validating presence of FHIR medication requests - if not sql_utils.is_field_populated( - schema=schema, - source_table=table, - hierarchy=[("medicationreference", dict), ("reference", dict)], - expected=sql_utils.REFERENCE, - cursor=cursor, - parser=parser, - ): - return data_types, has_userselected - - # checking med ref contents for our two linkage cases - query = base_templates.get_is_table_not_empty_query( - "medicationrequest", - "medicationreference.reference", - conditions=["medicationreference.reference LIKE '#%'"], - ) - cursor.execute(query) - progress.advance(task) - if cursor.fetchone() is not None: - data_types["by_contained_ref"] = True - query = base_templates.get_is_table_not_empty_query( - "medicationrequest", - "medicationreference.reference", - conditions=["medicationreference.reference LIKE 'Medication/%'"], - ) - cursor.execute(query) - progress.advance(task) - if cursor.fetchone() is not None: - data_types["by_external_ref"] = True - - return data_types, has_userselected - def prepare_queries( self, cursor: databases.DatabaseCursor, @@ -92,43 +24,45 @@ def prepare_queries( parser: databases.DatabaseParser = None, *args, **kwargs, - ) -> dict: + ) -> None: """Constructs queries related to condition codeableConcept :param cursor: A database cursor object :param schema: the schema/db name, matching the cursor :param parser: A database parser """ - medication_datasources, has_userselected = self._check_data_in_fields( - cursor, parser, schema + code_sources = [ + sql_utils.CodeableConceptConfig( + source_table="medication", + column_hierarchy=[("code", dict)], + target_table="core__medication_dn_code", + ), + sql_utils.CodeableConceptConfig( + source_table="medicationrequest", + column_hierarchy=[("medicationCodeableConcept", dict)], + target_table="core__medicationrequest_dn_inline_code", + ), + sql_utils.CodeableConceptConfig( + source_table="medicationrequest", + column_hierarchy=[("contained", list), ("code", dict)], + target_table="core__medicationrequest_dn_contained_code", + expected={ + "code": sql_utils.CODEABLE_CONCEPT, + "id": {}, + "resourceType": {}, + }, + extra_fields=[ + ("id", "contained_id"), + ("resourceType", "resource_type"), + ], + ), + ] + self.queries += sql_utils.denormalize_complex_objects( + schema, cursor, parser, code_sources + ) + validated_schema = sql_utils.validate_schema( + cursor, schema, expected_table_cols, parser ) - if ( - medication_datasources["inline"] - or medication_datasources["by_contained_ref"] - or medication_datasources["by_external_ref"] - ): - self.queries.append( - core_templates.get_core_template( - "medication", - config={ - "medication_datasources": medication_datasources, - "has_userselected": has_userselected, - }, - ) - ) - else: - self.queries.append( - base_templates.get_ctas_empty_query( - schema, - "core__medication", - [ - "id", - "encounter_ref", - "patient_ref", - "code", - "display", - "code_system", - "userselected", - ], - ) - ) + self.queries += [ + core_templates.get_core_template("medication", validated_schema), + ] diff --git a/cumulus_library/studies/core/builder_medicationrequest.py b/cumulus_library/studies/core/builder_medicationrequest.py index 1a46802e..8f3c34a1 100644 --- a/cumulus_library/studies/core/builder_medicationrequest.py +++ b/cumulus_library/studies/core/builder_medicationrequest.py @@ -44,12 +44,6 @@ def prepare_queries( column_hierarchy=[("category", list)], target_table="core__medicationrequest_dn_category", ), - sql_utils.CodeableConceptConfig( - source_table="medicationrequest", - source_id="id", - column_hierarchy=[("medicationcodeableconcept", dict)], - target_table="core__medicationrequest_dn_medication", - ), ] self.queries += sql_utils.denormalize_complex_objects( schema, cursor, parser, code_sources diff --git a/cumulus_library/studies/core/core_templates/medication.sql.jinja b/cumulus_library/studies/core/core_templates/medication.sql.jinja index e11d384b..8502313f 100644 --- a/cumulus_library/studies/core/core_templates/medication.sql.jinja +++ b/cumulus_library/studies/core/core_templates/medication.sql.jinja @@ -1,207 +1,92 @@ +{% import 'core_utils.jinja' as utils -%} + CREATE TABLE core__medication AS ( WITH - {# Gets medication data from inline ETL extraction. - - 95% of the time, this dataset is the 'correct' dataset for Cerner. - It may not be present in EPIC datasets. #} - {%- if config.medication_datasources.inline %} - mcc_nonnull AS ( - SELECT - id, - encounter, - subject, - medicationcodeableconcept - FROM medicationrequest - WHERE medicationcodeableconcept IS NOT NULL - AND encounter IS NOT NULL - ), - inline_medication AS ( - SELECT - id, - subject.reference as patient_ref, - encounter.reference AS encounter_ref, - t.r.code, - t.r.display, - t.r.system AS code_system, - {% if config.has_userselected %} - t.r.userselected - {% else %} - false AS userselected - {% endif %} - FROM mcc_nonnull, - unnest(medicationcodeableconcept.coding) AS t(r) - ) - {%- endif -%} - - {# comma handling for ctas chaining #} - {%- if config.medication_datasources.inline and - (config.medication_datasources.by_contained_ref or - config.medication_datasources.by_external_ref) - -%} - , - {%- endif %} - {# This section is also Cerner specific. Sometimes medication codes are blank - and we can get :some: info from the contains field. - - As of this writing, the code coming back via contained when code is not - present contains text only. In these cases, we'll cast the text - as a display element. - TODO: If we ever find a case where there is a valid code, we'll - need to add a new case detection. #} - {%- if config.medication_datasources.by_contained_ref %} - mrc_med_ref AS ( - SELECT medicationreference - FROM medicationrequest - WHERE - medicationreference IS NOT NULL - AND medicationcodeableconcept IS NULL - ), - - mrc_ref_id AS ( - SELECT DISTINCT substring(mrc_med_ref.medicationreference.reference, 2) AS id - FROM mrc_med_ref - WHERE - medicationreference.reference IS NOT NULL - AND medicationreference.reference LIKE '#%' - ), - - mrc_contained_nested AS ( - SELECT - id, - encounter, - subject, - contained - FROM medicationrequest - WHERE contained IS NOT NULL - ), - - mrc_contained_unnest AS ( + mr_basics AS ( SELECT DISTINCT - cn.id AS mr_id, - cn.encounter, - cn.subject, - row.id, - row.code - FROM mrc_contained_nested AS cn, - unnest(cn.contained) AS t (row) - ), - - contained_medication AS ( - SELECT - cu.mr_id AS id, - cu.encounter.reference AS encounter_ref, - cu.subject.reference AS patient_ref, - 'None' AS code, - cu.code.text AS display, - 'None' AS code_system, - FALSE AS userselected - FROM mrc_contained_unnest AS cu - INNER JOIN mrc_ref_id AS ri ON cu.id = ri.id - ) - {%- endif -%} - {# comma handling for ctas chaining #} - {%- if config.medication_datasources.by_contained_ref - and config.medication_datasources.by_external_ref -%} - , - {%- endif %} - {# Gets medication by reference from external medications table. - - This is generally how we expect EPIC to provide medication data. #} - {%- if config.medication_datasources.by_external_ref %} - mre_med_ref AS ( - SELECT - mr.id, - mr.encounter, - mr.subject, - mr.medicationreference + {{- utils.basic_cols( + 'medicationrequest', + 'mr', + [ + 'id' + ], + ) + }}, + {{- utils.nullable_cols( + 'medicationrequest', + 'mr', + [ + ('encounter', 'reference', 'encounter_ref'), + ('subject', 'reference', 'patient_ref'), + ('medicationReference', 'reference', 'med_ref'), + ], + schema + ) + }} FROM medicationrequest AS mr - WHERE mr.medicationreference IS NOT NULL ), - mre_ref_id AS ( + contained_refs AS ( SELECT DISTINCT mr.id, - mr.encounter, - mr.subject, - substring(mr.medicationreference.reference, 12) AS medication_id - FROM mre_med_ref AS mr - WHERE - mr.medicationreference.reference IS NOT NULL - AND mr.medicationreference.reference LIKE 'Medication/%' + substring(mr.med_ref, 2) AS medication_id + FROM mr_basics AS mr + WHERE mr.med_ref IS NOT NULL AND mr.med_ref LIKE '#%' ), - mre_med_nonnull AS ( - + external_refs AS ( SELECT DISTINCT - mri.id, - mri.encounter, - mri.subject, - m.code - FROM medication AS m - INNER JOIN mre_ref_id AS mri ON m.id = mri.medication_id - WHERE m.code.coding IS NOT NULL - ), - - external_medication AS ( - SELECT - mmn.id, - mmn.encounter.reference AS encounter_ref, - mmn.subject.reference AS patient_ref, - t.r.code, - mmn.code.text AS display, - t.r.system AS code_system, - FALSE AS userselected - FROM mre_med_nonnull AS mmn, - unnest(mmn.code.coding) AS t (r) + mr.id, + substring(mr.med_ref, 12) AS medication_id + FROM mr_basics AS mr + WHERE mr.med_ref IS NOT NULL AND mr.med_ref LIKE 'Medication/%' ) - {%- endif %} - {# Selective unioning of the above tables #} - {%- if config.medication_datasources.inline %} + + {# Internal: medication data from inline ETL extraction. + 95% of the time, this dataset is the 'correct' dataset for Cerner. + It may not be present in EPIC datasets. #} SELECT - id, - encounter_ref, - patient_ref, - code, - display, - code_system, - userselected - FROM - inline_medication - {%- if config.medication_datasources.inline and - (config.medication_datasources.by_contained_ref or - config.medication_datasources.by_external_ref) - %} + mr.id, + mr.encounter_ref, + mr.patient_ref, + mric.code, + mric.display, + mric.code_system, + mric.userSelected + FROM mr_basics AS mr + INNER JOIN core__medicationrequest_dn_inline_code AS mric ON mr.id = mric.id + + {# Contained: medication reference into contained resources. + We've also seen this in Cerner. Though in the cases we've seen this, it's usuall + a very lightly fleshed out resource, with only code.text and no codings. #} UNION - {% endif %} - {%- endif %} - {%- if config.medication_datasources.by_contained_ref %} SELECT - id, - encounter_ref, - patient_ref, - code, - display, - code_system, - userselected - FROM - contained_medication - {%- if config.medication_datasources.by_contained_ref - and config.medication_datasources.by_external_ref - %} + mr.id, + mr.encounter_ref, + mr.patient_ref, + mrcc.code, + mrcc.display, + mrcc.code_system, + mrcc.userSelected + FROM mr_basics AS mr + INNER JOIN contained_refs AS cr ON mr.id = cr.id + INNER JOIN core__medicationrequest_dn_contained_code AS mrcc + ON cr.id = mrcc.id AND cr.medication_id = mrcc.contained_id + WHERE mrcc.resource_type = 'Medication' + + {# External: medication by reference from external medications table. + This is generally how we expect EPIC to provide medication data. #} UNION - {% endif %} - {%- endif %} - {%- if config.medication_datasources.by_external_ref %} SELECT - id, - encounter_ref, - patient_ref, - code, - display, - code_system, - userselected - FROM - external_medication - {%- endif %} + mr.id, + mr.encounter_ref, + mr.patient_ref, + mc.code, + mc.display, + mc.code_system, + mc.userSelected + FROM mr_basics AS mr + INNER JOIN external_refs AS er ON mr.id = er.id + INNER JOIN core__medication_dn_code AS mc ON er.medication_id = mc.id ); diff --git a/cumulus_library/studies/core/core_templates/medicationrequest.sql.jinja b/cumulus_library/studies/core/core_templates/medicationrequest.sql.jinja index 8a6f0b53..6f20a85f 100644 --- a/cumulus_library/studies/core/core_templates/medicationrequest.sql.jinja +++ b/cumulus_library/studies/core/core_templates/medicationrequest.sql.jinja @@ -1,7 +1,25 @@ {% import 'core_utils.jinja' as utils %} CREATE TABLE core__medicationrequest AS -WITH temp_mr AS ( +WITH + +tmp_dn_dosage_text AS ( + SELECT + mr.id, + {{- utils.nullable_cols( + 'medicationrequest', + 'u', + [ + ('dosageInstruction', 'text', 'dosageInstruction_text'), + ], + schema + ) }} + FROM medicationrequest AS mr, + UNNEST(mr.dosageInstruction) AS u (dosageInstruction) + WHERE u.dosageInstruction.text IS NOT NULL +), + +temp_mr AS ( SELECT {{- utils.basic_cols( 'medicationrequest', @@ -35,7 +53,6 @@ WITH temp_mr AS ( 'mr', [ 'reportedBoolean', - 'dosageInstruction', ('subject', 'reference', 'subject_ref'), ('encounter', 'reference', 'encounter_ref'), ], @@ -45,10 +62,12 @@ WITH temp_mr AS ( mrc.code_system AS category_code_system, mrm.code AS medication_code, mrm.code_system AS medication_code_system, - mrm.display AS medication_display + mrm.display AS medication_display, + mrdt.dosageInstruction_text FROM medicationrequest AS mr LEFT JOIN core__medicationrequest_dn_category AS mrc ON mr.id = mrc.id - LEFT JOIN core__medicationrequest_dn_medication AS mrm ON mr.id = mrm.id + LEFT JOIN core__medicationrequest_dn_inline_code AS mrm ON mr.id = mrm.id + LEFT JOIN tmp_dn_dosage_text AS mrdt ON mr.id = mrdt.id WHERE mrm.code_system = 'http://www.nlm.nih.gov/research/umls/rxnorm' ) @@ -64,8 +83,7 @@ SELECT mr.medication_display, mr.authoredOn, mr.authoredOn_month, - dose_row.dose_col.text AS dosageInstruction_text, + mr.dosageInstruction_text, mr.subject_ref, mr.encounter_ref -FROM temp_mr AS mr, - UNNEST(mr.dosageInstruction) AS dose_row (dose_col) +FROM temp_mr AS mr diff --git a/cumulus_library/studies/core/reference_sql/builder_condition.sql b/cumulus_library/studies/core/reference_sql/builder_condition.sql index e0c2740e..17a9592a 100644 --- a/cumulus_library/studies/core/reference_sql/builder_condition.sql +++ b/cumulus_library/studies/core/reference_sql/builder_condition.sql @@ -23,12 +23,13 @@ CREATE TABLE core__condition_dn_category AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.category.coding) AS u (codeable_concept) + UNNEST(s.category.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -37,7 +38,8 @@ CREATE TABLE core__condition_dn_category AS ( row, code_system, code, - display + display, + userSelected FROM system_category_0 ) @@ -46,7 +48,8 @@ CREATE TABLE core__condition_dn_category AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); @@ -61,14 +64,15 @@ CREATE TABLE core__condition_dn_clinical_status AS ( s.id AS id, 0 AS row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.clinicalStatus.coding) AS u (codeable_concept) + UNNEST(s.clinicalStatus.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/condition-clinical' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/condition-clinical' ), --noqa: LT07 union_table AS ( @@ -78,7 +82,8 @@ CREATE TABLE core__condition_dn_clinical_status AS ( priority, code_system, code, - display + display, + userSelected FROM system_clinicalStatus_0 ), @@ -90,6 +95,7 @@ CREATE TABLE core__condition_dn_clinical_status AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -97,7 +103,8 @@ CREATE TABLE core__condition_dn_clinical_status AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -105,7 +112,8 @@ CREATE TABLE core__condition_dn_clinical_status AS ( id, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); @@ -121,14 +129,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://snomed.info/sct' + u.coding.system LIKE 'http://snomed.info/sct' ), --noqa: LT07 system_code_1 AS ( @@ -136,14 +145,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '1' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' ), --noqa: LT07 system_code_2 AS ( @@ -151,14 +161,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '2' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm' ), --noqa: LT07 system_code_3 AS ( @@ -166,14 +177,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '3' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm/diagnosis' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm/diagnosis' ), --noqa: LT07 system_code_4 AS ( @@ -181,14 +193,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '4' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.728286' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.728286' ), --noqa: LT07 system_code_5 AS ( @@ -196,14 +209,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '5' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.4.698084.10375' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.4.698084.10375' ), --noqa: LT07 system_code_6 AS ( @@ -211,14 +225,15 @@ CREATE TABLE core__condition_codable_concepts_display AS ( s.id AS id, 0 AS row, '6' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/data-absent-reason' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/data-absent-reason' ), --noqa: LT07 union_table AS ( @@ -228,7 +243,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_0 UNION SELECT @@ -237,7 +253,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_1 UNION SELECT @@ -246,7 +263,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_2 UNION SELECT @@ -255,7 +273,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_3 UNION SELECT @@ -264,7 +283,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_4 UNION SELECT @@ -273,7 +293,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_5 UNION SELECT @@ -282,7 +303,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( priority, code_system, code, - display + display, + userSelected FROM system_code_6 ), @@ -294,6 +316,7 @@ CREATE TABLE core__condition_codable_concepts_display AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -301,7 +324,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -309,7 +333,8 @@ CREATE TABLE core__condition_codable_concepts_display AS ( id, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); @@ -324,12 +349,13 @@ CREATE TABLE core__condition_codable_concepts_all AS ( SELECT DISTINCT s.id AS id, 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -338,7 +364,8 @@ CREATE TABLE core__condition_codable_concepts_all AS ( row, code_system, code, - display + display, + userSelected FROM system_code_0 ) @@ -346,7 +373,8 @@ CREATE TABLE core__condition_codable_concepts_all AS ( id, code, code_system, - display + display, + userSelected FROM union_table ); @@ -361,14 +389,15 @@ CREATE TABLE core__condition_dn_verification_status AS ( s.id AS id, 0 AS row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM condition AS s, - UNNEST(s.verificationStatus.coding) AS u (codeable_concept) + UNNEST(s.verificationStatus.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/condition-ver-status' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/condition-ver-status' ), --noqa: LT07 union_table AS ( @@ -378,7 +407,8 @@ CREATE TABLE core__condition_dn_verification_status AS ( priority, code_system, code, - display + display, + userSelected FROM system_verificationStatus_0 ), @@ -390,6 +420,7 @@ CREATE TABLE core__condition_dn_verification_status AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -397,7 +428,8 @@ CREATE TABLE core__condition_dn_verification_status AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -405,7 +437,8 @@ CREATE TABLE core__condition_dn_verification_status AS ( id, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); diff --git a/cumulus_library/studies/core/reference_sql/builder_documentreference.sql b/cumulus_library/studies/core/reference_sql/builder_documentreference.sql index e8fdb4b5..8f46aeeb 100644 --- a/cumulus_library/studies/core/reference_sql/builder_documentreference.sql +++ b/cumulus_library/studies/core/reference_sql/builder_documentreference.sql @@ -13,12 +13,13 @@ CREATE TABLE core__documentreference_dn_type AS ( SELECT DISTINCT s.id AS id, 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM documentreference AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -27,7 +28,8 @@ CREATE TABLE core__documentreference_dn_type AS ( row, code_system, code, - display + display, + userSelected FROM system_type_0 ) @@ -35,7 +37,8 @@ CREATE TABLE core__documentreference_dn_type AS ( id, code, code_system, - display + display, + userSelected FROM union_table ); @@ -60,14 +63,15 @@ CREATE TABLE core__documentreference_dn_category AS ( s.id AS id, s.row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.category.coding) AS u (codeable_concept) + UNNEST(s.category.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-category' + u.coding.system LIKE 'http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-category' ), --noqa: LT07 union_table AS ( @@ -77,7 +81,8 @@ CREATE TABLE core__documentreference_dn_category AS ( priority, code_system, code, - display + display, + userSelected FROM system_category_0 ), @@ -89,6 +94,7 @@ CREATE TABLE core__documentreference_dn_category AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -96,7 +102,8 @@ CREATE TABLE core__documentreference_dn_category AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -105,7 +112,8 @@ CREATE TABLE core__documentreference_dn_category AS ( row, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); diff --git a/cumulus_library/studies/core/reference_sql/builder_encounter.sql b/cumulus_library/studies/core/reference_sql/builder_encounter.sql index 0c6180b0..0bbfac27 100644 --- a/cumulus_library/studies/core/reference_sql/builder_encounter.sql +++ b/cumulus_library/studies/core/reference_sql/builder_encounter.sql @@ -24,14 +24,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/encounter-type' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/encounter-type' ), --noqa: LT07 system_type_1 AS ( @@ -39,14 +40,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '1' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/v2-0004' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/v2-0004' ), --noqa: LT07 system_type_2 AS ( @@ -54,14 +56,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '2' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:2.16.840.1.113883.4.642.3.248' + u.coding.system LIKE 'urn:oid:2.16.840.1.113883.4.642.3.248' ), --noqa: LT07 system_type_3 AS ( @@ -69,14 +72,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '3' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://snomed.info/sct' + u.coding.system LIKE 'http://snomed.info/sct' ), --noqa: LT07 system_type_4 AS ( @@ -84,14 +88,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '4' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'https://fhir.cerner.com/%/codeSet/71' + u.coding.system LIKE 'https://fhir.cerner.com/%/codeSet/71' ), --noqa: LT07 system_type_5 AS ( @@ -99,14 +104,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '5' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.10110' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.10110' ), --noqa: LT07 system_type_6 AS ( @@ -114,14 +120,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '6' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.18875' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.18875' ), --noqa: LT07 system_type_7 AS ( @@ -129,14 +136,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '7' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.30' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.10.698084.30' ), --noqa: LT07 system_type_8 AS ( @@ -144,14 +152,15 @@ CREATE TABLE core__encounter_dn_type AS ( s.id AS id, s.row, '8' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.type.coding) AS u (codeable_concept) + UNNEST(s.type.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.808267' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.808267' ), --noqa: LT07 union_table AS ( @@ -161,7 +170,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_0 UNION SELECT @@ -170,7 +180,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_1 UNION SELECT @@ -179,7 +190,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_2 UNION SELECT @@ -188,7 +200,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_3 UNION SELECT @@ -197,7 +210,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_4 UNION SELECT @@ -206,7 +220,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_5 UNION SELECT @@ -215,7 +230,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_6 UNION SELECT @@ -224,7 +240,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_7 UNION SELECT @@ -233,7 +250,8 @@ CREATE TABLE core__encounter_dn_type AS ( priority, code_system, code, - display + display, + userSelected FROM system_type_8 ), @@ -245,6 +263,7 @@ CREATE TABLE core__encounter_dn_type AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -252,7 +271,8 @@ CREATE TABLE core__encounter_dn_type AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -261,7 +281,8 @@ CREATE TABLE core__encounter_dn_type AS ( row, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); @@ -273,9 +294,9 @@ CREATE TABLE IF NOT EXISTS "main"."core__encounter_dn_servicetype" AS ( SELECT * FROM ( VALUES - (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar)) + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) ) - AS t ("id","row","code","code_system","display") + AS t ("id","row","code","code_system","display","userSelected") WHERE 1 = 0 -- ensure empty table ); @@ -285,9 +306,9 @@ CREATE TABLE IF NOT EXISTS "main"."core__encounter_dn_priority" AS ( SELECT * FROM ( VALUES - (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar)) + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) ) - AS t ("id","row","code","code_system","display") + AS t ("id","row","code","code_system","display","userSelected") WHERE 1 = 0 -- ensure empty table ); @@ -311,14 +332,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://terminology.hl7.org/CodeSystem/v3-ActPriority' + u.coding.system LIKE 'http://terminology.hl7.org/CodeSystem/v3-ActPriority' ), --noqa: LT07 system_reasoncode_1 AS ( @@ -326,14 +348,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '1' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://snomed.info/sct' + u.coding.system LIKE 'http://snomed.info/sct' ), --noqa: LT07 system_reasoncode_2 AS ( @@ -341,14 +364,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '2' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' ), --noqa: LT07 system_reasoncode_3 AS ( @@ -356,14 +380,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '3' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-9-cm' ), --noqa: LT07 system_reasoncode_4 AS ( @@ -371,14 +396,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '4' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'https://fhir.cerner.com/%/nomenclature' + u.coding.system LIKE 'https://fhir.cerner.com/%/nomenclature' ), --noqa: LT07 system_reasoncode_5 AS ( @@ -386,14 +412,15 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( s.id AS id, s.row, '5' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.reasoncode.coding) AS u (codeable_concept) + UNNEST(s.reasoncode.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.728286' + u.coding.system LIKE 'urn:oid:1.2.840.114350.1.13.71.2.7.2.728286' ), --noqa: LT07 union_table AS ( @@ -403,7 +430,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_0 UNION SELECT @@ -412,7 +440,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_1 UNION SELECT @@ -421,7 +450,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_2 UNION SELECT @@ -430,7 +460,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_3 UNION SELECT @@ -439,7 +470,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_4 UNION SELECT @@ -448,7 +480,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( priority, code_system, code, - display + display, + userSelected FROM system_reasoncode_5 ), @@ -460,6 +493,7 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -467,7 +501,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -476,7 +511,8 @@ CREATE TABLE core__encounter_dn_reasoncode AS ( row, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); @@ -491,12 +527,13 @@ CREATE TABLE core__encounter_dn_dischargedisposition AS ( SELECT DISTINCT s.id AS id, 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM encounter AS s, - UNNEST(s.hospitalization.dischargedisposition.coding) AS u (codeable_concept) + UNNEST(s.hospitalization.dischargedisposition.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -505,7 +542,8 @@ CREATE TABLE core__encounter_dn_dischargedisposition AS ( row, code_system, code, - display + display, + userSelected FROM system_dischargedisposition_0 ) @@ -513,7 +551,8 @@ CREATE TABLE core__encounter_dn_dischargedisposition AS ( id, code, code_system, - display + display, + userSelected FROM union_table ); diff --git a/cumulus_library/studies/core/reference_sql/builder_medication.sql b/cumulus_library/studies/core/reference_sql/builder_medication.sql index 206cd7ae..c4997196 100644 --- a/cumulus_library/studies/core/reference_sql/builder_medication.sql +++ b/cumulus_library/studies/core/reference_sql/builder_medication.sql @@ -6,44 +6,136 @@ -- ########################################################### -CREATE TABLE core__medication AS ( +CREATE TABLE IF NOT EXISTS "main"."core__medication_dn_code" +AS ( + SELECT * FROM ( + VALUES + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) + ) + AS t ("id","row","code","code_system","display","userSelected") + WHERE 1 = 0 -- ensure empty table +); + +-- ########################################################### + +CREATE TABLE core__medicationrequest_dn_inline_code AS ( WITH - - mcc_nonnull AS ( - SELECT - id, - encounter, - subject, - medicationcodeableconcept - FROM medicationrequest - WHERE medicationcodeableconcept IS NOT NULL - AND encounter IS NOT NULL - ), - inline_medication AS ( + + system_medicationCodeableConcept_0 AS ( + SELECT DISTINCT + s.id AS id, + 0 AS row, + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected + FROM + medicationrequest AS s, + UNNEST(s.medicationCodeableConcept.coding) AS u (coding) + ), --noqa: LT07 + + union_table AS ( SELECT id, - subject.reference as patient_ref, - encounter.reference AS encounter_ref, - t.r.code, - t.r.display, - t.r.system AS code_system, - - false AS userselected - - FROM mcc_nonnull, - unnest(medicationcodeableconcept.coding) AS t(r) + row, + code_system, + code, + display, + userSelected + FROM system_medicationCodeableConcept_0 + ) - - - SELECT id, - encounter_ref, - patient_ref, code, - display, code_system, - userselected - FROM - inline_medication + display, + userSelected + FROM union_table +); + + +-- ########################################################### + +CREATE TABLE IF NOT EXISTS "main"."core__medicationrequest_dn_contained_code" +AS ( + SELECT * FROM ( + VALUES + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean),cast(NULL AS varchar),cast(NULL AS varchar)) + ) + AS t ("id","row","code","code_system","display","userSelected","contained_id","resource_type") + WHERE 1 = 0 -- ensure empty table +); + +-- ########################################################### + +CREATE TABLE core__medication AS ( + WITH + + mr_basics AS ( + SELECT DISTINCT + mr.id, + mr.encounter.reference AS encounter_ref, + mr.subject.reference AS patient_ref, + mr.medicationReference.reference AS med_ref + FROM medicationrequest AS mr + ), + + contained_refs AS ( + SELECT DISTINCT + mr.id, + substring(mr.med_ref, 2) AS medication_id + FROM mr_basics AS mr + WHERE mr.med_ref IS NOT NULL AND mr.med_ref LIKE '#%' + ), + + external_refs AS ( + SELECT DISTINCT + mr.id, + substring(mr.med_ref, 12) AS medication_id + FROM mr_basics AS mr + WHERE mr.med_ref IS NOT NULL AND mr.med_ref LIKE 'Medication/%' + ) + + + SELECT + mr.id, + mr.encounter_ref, + mr.patient_ref, + mric.code, + mric.display, + mric.code_system, + mric.userSelected + FROM mr_basics AS mr + INNER JOIN core__medicationrequest_dn_inline_code AS mric ON mr.id = mric.id + + + UNION + SELECT + mr.id, + mr.encounter_ref, + mr.patient_ref, + mrcc.code, + mrcc.display, + mrcc.code_system, + mrcc.userSelected + FROM mr_basics AS mr + INNER JOIN contained_refs AS cr ON mr.id = cr.id + INNER JOIN core__medicationrequest_dn_contained_code AS mrcc + ON cr.id = mrcc.id AND cr.medication_id = mrcc.contained_id + WHERE mrcc.resource_type = 'Medication' + + + UNION + SELECT + mr.id, + mr.encounter_ref, + mr.patient_ref, + mc.code, + mc.display, + mc.code_system, + mc.userSelected + FROM mr_basics AS mr + INNER JOIN external_refs AS er ON mr.id = er.id + INNER JOIN core__medication_dn_code AS mc ON er.medication_id = mc.id ); diff --git a/cumulus_library/studies/core/reference_sql/builder_medicationrequest.sql b/cumulus_library/studies/core/reference_sql/builder_medicationrequest.sql index 3b2b0213..e74478ce 100644 --- a/cumulus_library/studies/core/reference_sql/builder_medicationrequest.sql +++ b/cumulus_library/studies/core/reference_sql/builder_medicationrequest.sql @@ -23,12 +23,13 @@ CREATE TABLE core__medicationrequest_dn_category AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.category.coding) AS u (codeable_concept) + UNNEST(s.category.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -37,7 +38,8 @@ CREATE TABLE core__medicationrequest_dn_category AS ( row, code_system, code, - display + display, + userSelected FROM system_category_0 ) @@ -46,53 +48,29 @@ CREATE TABLE core__medicationrequest_dn_category AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); -- ########################################################### -CREATE TABLE core__medicationrequest_dn_medication AS ( - WITH - system_medicationcodeableconcept_0 AS ( - SELECT DISTINCT - s.id AS id, - 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system - FROM - medicationrequest AS s, - UNNEST(s.medicationcodeableconcept.coding) AS u (codeable_concept) - ), --noqa: LT07 - - union_table AS ( - SELECT - id, - row, - code_system, - code, - display - FROM system_medicationcodeableconcept_0 - - ) - SELECT - id, - code, - code_system, - display - FROM union_table -); - - --- ########################################################### +CREATE TABLE core__medicationrequest AS +WITH +tmp_dn_dosage_text AS ( + SELECT + mr.id, + u.dosageInstruction.text AS dosageInstruction_text + FROM medicationrequest AS mr, + UNNEST(mr.dosageInstruction) AS u (dosageInstruction) + WHERE u.dosageInstruction.text IS NOT NULL +), -CREATE TABLE core__medicationrequest AS -WITH temp_mr AS ( +temp_mr AS ( SELECT mr.id, mr.status, @@ -101,17 +79,18 @@ WITH temp_mr AS ( date_trunc('month', date(from_iso8601_timestamp(mr."authoredOn"))) AS authoredOn_month, mr.reportedBoolean, - mr.dosageInstruction, mr.subject.reference AS subject_ref, mr.encounter.reference AS encounter_ref, mrc.code AS category_code, mrc.code_system AS category_code_system, mrm.code AS medication_code, mrm.code_system AS medication_code_system, - mrm.display AS medication_display + mrm.display AS medication_display, + mrdt.dosageInstruction_text FROM medicationrequest AS mr LEFT JOIN core__medicationrequest_dn_category AS mrc ON mr.id = mrc.id - LEFT JOIN core__medicationrequest_dn_medication AS mrm ON mr.id = mrm.id + LEFT JOIN core__medicationrequest_dn_inline_code AS mrm ON mr.id = mrm.id + LEFT JOIN tmp_dn_dosage_text AS mrdt ON mr.id = mrdt.id WHERE mrm.code_system = 'http://www.nlm.nih.gov/research/umls/rxnorm' ) @@ -127,8 +106,7 @@ SELECT mr.medication_display, mr.authoredOn, mr.authoredOn_month, - dose_row.dose_col.text AS dosageInstruction_text, + mr.dosageInstruction_text, mr.subject_ref, mr.encounter_ref -FROM temp_mr AS mr, - UNNEST(mr.dosageInstruction) AS dose_row (dose_col) +FROM temp_mr AS mr diff --git a/cumulus_library/studies/core/reference_sql/builder_observation.sql b/cumulus_library/studies/core/reference_sql/builder_observation.sql index 0a24dd33..77feb2fc 100644 --- a/cumulus_library/studies/core/reference_sql/builder_observation.sql +++ b/cumulus_library/studies/core/reference_sql/builder_observation.sql @@ -23,12 +23,13 @@ CREATE TABLE core__observation_dn_category AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.category.coding) AS u (codeable_concept) + UNNEST(s.category.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -37,7 +38,8 @@ CREATE TABLE core__observation_dn_category AS ( row, code_system, code, - display + display, + userSelected FROM system_category_0 ) @@ -46,7 +48,8 @@ CREATE TABLE core__observation_dn_category AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); @@ -60,12 +63,13 @@ CREATE TABLE core__observation_dn_code AS ( SELECT DISTINCT s.id AS id, 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM observation AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -74,7 +78,8 @@ CREATE TABLE core__observation_dn_code AS ( row, code_system, code, - display + display, + userSelected FROM system_code_0 ) @@ -82,7 +87,8 @@ CREATE TABLE core__observation_dn_code AS ( id, code, code_system, - display + display, + userSelected FROM union_table ); @@ -106,12 +112,13 @@ CREATE TABLE core__observation_component_code AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.code.coding) AS u (codeable_concept) + UNNEST(s.code.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -120,7 +127,8 @@ CREATE TABLE core__observation_component_code AS ( row, code_system, code, - display + display, + userSelected FROM system_code_0 ) @@ -129,7 +137,8 @@ CREATE TABLE core__observation_component_code AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); @@ -153,12 +162,13 @@ CREATE TABLE core__observation_component_dataabsentreason AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.dataabsentreason.coding) AS u (codeable_concept) + UNNEST(s.dataabsentreason.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -167,7 +177,8 @@ CREATE TABLE core__observation_component_dataabsentreason AS ( row, code_system, code, - display + display, + userSelected FROM system_dataabsentreason_0 ) @@ -176,7 +187,8 @@ CREATE TABLE core__observation_component_dataabsentreason AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); @@ -203,19 +215,20 @@ CREATE TABLE core__observation_component_interpretation AS ( u."interpretation" FROM flattened_rows AS s, - UNNEST(s."interpretation") AS u ("interpretation") + UNNEST(s.interpretation) AS u ("interpretation") ), system_interpretation_0 AS ( SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM child_flattened_rows AS s, - UNNEST(s.interpretation.coding) AS u (codeable_concept) + UNNEST(s.interpretation.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -224,7 +237,8 @@ CREATE TABLE core__observation_component_interpretation AS ( row, code_system, code, - display + display, + userSelected FROM system_interpretation_0 ) @@ -233,7 +247,8 @@ CREATE TABLE core__observation_component_interpretation AS ( row, code, code_system, - display + display, + userSelected FROM union_table ); @@ -244,9 +259,9 @@ CREATE TABLE IF NOT EXISTS "main"."core__observation_component_valuecodeableconc AS ( SELECT * FROM ( VALUES - (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar)) + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) ) - AS t ("id","row","code","code_system","display") + AS t ("id","row","code","code_system","display","userSelected") WHERE 1 = 0 -- ensure empty table ); @@ -256,9 +271,9 @@ CREATE TABLE IF NOT EXISTS "main"."core__observation_dn_interpretation" AS ( SELECT * FROM ( VALUES - (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar)) + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) ) - AS t ("id","row","code","code_system","display") + AS t ("id","row","code","code_system","display","userSelected") WHERE 1 = 0 -- ensure empty table ); @@ -271,12 +286,13 @@ CREATE TABLE core__observation_dn_valuecodeableconcept AS ( SELECT DISTINCT s.id AS id, 0 AS row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM observation AS s, - UNNEST(s.valuecodeableconcept.coding) AS u (codeable_concept) + UNNEST(s.valuecodeableconcept.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -285,7 +301,8 @@ CREATE TABLE core__observation_dn_valuecodeableconcept AS ( row, code_system, code, - display + display, + userSelected FROM system_valuecodeableconcept_0 ) @@ -293,7 +310,8 @@ CREATE TABLE core__observation_dn_valuecodeableconcept AS ( id, code, code_system, - display + display, + userSelected FROM union_table ); @@ -304,9 +322,9 @@ CREATE TABLE IF NOT EXISTS "main"."core__observation_dn_dataabsentreason" AS ( SELECT * FROM ( VALUES - (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar)) + (cast(NULL AS varchar),cast(NULL AS bigint),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS varchar),cast(NULL AS boolean)) ) - AS t ("id","row","code","code_system","display") + AS t ("id","row","code","code_system","display","userSelected") WHERE 1 = 0 -- ensure empty table ); diff --git a/cumulus_library/template_sql/base_templates.py b/cumulus_library/template_sql/base_templates.py index 618f1b08..2a36b4ac 100644 --- a/cumulus_library/template_sql/base_templates.py +++ b/cumulus_library/template_sql/base_templates.py @@ -86,6 +86,7 @@ def get_codeable_concept_denormalize_query( target_table=config.target_table, filter_priority=config.filter_priority, code_systems=config.code_systems, + extra_fields=config.extra_fields or [], ) diff --git a/cumulus_library/template_sql/codeable_concept_denormalize.sql.jinja b/cumulus_library/template_sql/codeable_concept_denormalize.sql.jinja index 0d511a4c..a764161d 100644 --- a/cumulus_library/template_sql/codeable_concept_denormalize.sql.jinja +++ b/cumulus_library/template_sql/codeable_concept_denormalize.sql.jinja @@ -1,16 +1,29 @@ {%- import 'syntax.sql.jinja' as syntax -%} {%- import 'unnest_utils.jinja' as unnest_utils -%} + +{% set extra_alias_done = false -%} + CREATE TABLE {{ target_table }} AS ( WITH {%- if is_array %} flattened_rows AS ( - {{ unnest_utils.flatten(source_table, column_name, parent_field=parent_field) }} + {{ unnest_utils.flatten( + source_table, + column_name, + parent_field=parent_field, + extra_fields=extra_fields, + ) }} ), {%- set source_table = 'flattened_rows' -%} {%- set parent_field = false %} + {%- set extra_alias_done = true %} {%- endif %} + {%- set field_alias = ( + (parent_field + "." + column_name) if parent_field else column_name + ) %} + {%- if child_is_array %} child_flattened_rows AS ( @@ -19,18 +32,21 @@ CREATE TABLE {{ target_table }} AS ( {%- if is_array %} s.row, -- keep the parent row number {%- endif %} + {%- for extra_field in extra_fields %} + {%- if extra_alias_done %} + {{ extra_field[1] }}, + {%- else %} + s.{{ extra_field[0] }} AS {{ extra_field[1] }}, + {%- endif %} + {%- endfor %} u."{{ column_name }}" FROM {{ source_table }} AS s, - {%- if parent_field %} - UNNEST(s."{{ parent_field }}"."{{ column_name }}") - AS u ("{{ column_name }}") - {%- else %} - UNNEST(s."{{ column_name }}") AS u ("{{ column_name }}") - {%- endif %} + UNNEST(s.{{ field_alias }}) AS u ("{{ column_name }}") ), {%- set source_table = 'child_flattened_rows' -%} - {%- set parent_field = false %} + {%- set field_alias = column_name %} + {%- set extra_alias_done = true %} {%- endif %} {%- for system in code_systems %} @@ -46,21 +62,24 @@ CREATE TABLE {{ target_table }} AS ( {%- if filter_priority %} '{{ loop.index0 }}' AS priority, {%- endif %} - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + {%- for extra_field in extra_fields %} + {%- if extra_alias_done %} + {{ extra_field[1] }}, + {%- else %} + s.{{ extra_field[0] }} AS {{ extra_field[1] }}, + {%- endif %} + {%- endfor %} + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM - {#- Temp workaround - to be reworked by generic DN -#} - {%- if parent_field %} + {#- Temp workaround - to be reworked by generic DN #} {{ source_table }} AS s, - UNNEST(s.{{ parent_field }}.{{ column_name }}.coding) AS u (codeable_concept) - {%- else %} - {{ source_table }} AS s, - UNNEST(s.{{ column_name }}.coding) AS u (codeable_concept) - {%- endif %} + UNNEST(s.{{ field_alias }}.coding) AS u (coding) {%- if filter_priority %} WHERE - u.codeable_concept.system LIKE '{{ system }}' + u.coding.system LIKE '{{ system }}' {%- endif %} ), --noqa: LT07 {%- endfor %} @@ -73,9 +92,13 @@ CREATE TABLE {{ target_table }} AS ( {%- if filter_priority %} priority, {%- endif %} + {%- for extra_field in extra_fields %} + {{ extra_field[1] }}, + {%- endfor %} code_system, code, - display + display, + userSelected FROM system_{{ column_name }}_{{ loop.index0 }} {{ syntax.union_delineate(loop) }} {%- endfor %} @@ -86,9 +109,13 @@ CREATE TABLE {{ target_table }} AS ( SELECT id, row, + {%- for extra_field in extra_fields %} + {{ extra_field[1] }}, + {%- endfor %} code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -96,7 +123,9 @@ CREATE TABLE {{ target_table }} AS ( ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected + {%- for extra_field in extra_fields %}, {{ extra_field[1] }}{% endfor %} ORDER BY priority ASC ) @@ -105,9 +134,13 @@ CREATE TABLE {{ target_table }} AS ( {%- if is_array %} row, {%- endif %} + {%- for extra_field in extra_fields %} + {{ extra_field[1] }}, + {%- endfor %} code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); @@ -117,9 +150,13 @@ CREATE TABLE {{ target_table }} AS ( {%- if is_array %} row, {%- endif %} + {%- for extra_field in extra_fields %} + {{ extra_field[1] }}, + {%- endfor %} code, code_system, - display + display, + userSelected FROM union_table ); {% endif %} diff --git a/cumulus_library/template_sql/shared_macros/unnest_utils.jinja b/cumulus_library/template_sql/shared_macros/unnest_utils.jinja index 5fcf41fe..0c222297 100644 --- a/cumulus_library/template_sql/shared_macros/unnest_utils.jinja +++ b/cumulus_library/template_sql/shared_macros/unnest_utils.jinja @@ -1,6 +1,6 @@ {# Flattens an array into multiple rows, with ordinality #} -{%- macro flatten(table, field, parent_field = null, source_id = 'id') -%} +{%- macro flatten(table, field, parent_field = null, source_id = 'id', extra_fields = null) -%} SELECT DISTINCT t.{{ source_id }} AS id, {#- @@ -11,6 +11,9 @@ give us back unnested rows in an arbitrary order. #} ROW_NUMBER() OVER (PARTITION BY {{ source_id }}) AS row, + {% for extra_field in (extra_fields or []) -%} + r."{{ extra_field[0] }}" AS "{{ extra_field[1] }}", + {% endfor -%} r."{{ field }}" FROM {{ table }} AS t, diff --git a/cumulus_library/template_sql/sql_utils.py b/cumulus_library/template_sql/sql_utils.py index 5902d07a..6f9e9f5d 100644 --- a/cumulus_library/template_sql/sql_utils.py +++ b/cumulus_library/template_sql/sql_utils.py @@ -49,12 +49,17 @@ class CodeableConceptConfig(BaseConfig): :keyword code_systems: a list of strings matching the start of the systems field, in preference order, for selecting data for filtering. This should not be set if filter_priority is false. + :keyword expected: a schema fragment for what the shape of this field should be. + If any bit of this schema fragment is not present, there will be no results. + :keyword extra_fields: extra fields to include, as siblings of the concept. + It's a list of tuples (field, alias). """ column_hierarchy: list[tuple] filter_priority: bool = False code_systems: list = None expected: list | dict = field(default_factory=lambda: CODEABLE_CONCEPT) + extra_fields: list[tuple] = None # candidate for moving into base config @dataclass(kw_only=True) @@ -151,18 +156,31 @@ def denormalize_complex_objects( ) ) else: + table_cols = [ + "id", + "row", + "code", + "code_system", + "display", + "userSelected", + ] + col_types = [ + "varchar", + "bigint", + "varchar", + "varchar", + "varchar", + "boolean", + ] + if code_source.extra_fields: + table_cols += [f[1] for f in code_source.extra_fields] + col_types += ["varchar"] * len(code_source.extra_fields) queries.append( base_templates.get_ctas_empty_query( schema_name=schema, table_name=code_source.target_table, - table_cols=["id", "row", "code", "code_system", "display"], - table_cols_types=[ - "varchar", - "bigint", - "varchar", - "varchar", - "varchar", - ], + table_cols=table_cols, + table_cols_types=col_types, ) ) case CodingConfig(): diff --git a/pyproject.toml b/pyproject.toml index 11303179..1ad4b4b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "cumulus-library" requires-python = ">= 3.10" dependencies = [ "ctakesclient >= 1.3", - "cumulus-fhir-support >= 1", + "cumulus-fhir-support >= 1.1", "duckdb >= 0.9", "fhirclient >= 4.1", "Jinja2 > 3", diff --git a/tests/core/test_core.py b/tests/core/test_core.py index 8a2beeae..14e6ffe9 100644 --- a/tests/core/test_core.py +++ b/tests/core/test_core.py @@ -5,7 +5,6 @@ import pytest import toml -from cumulus_library.studies.core.core_templates import core_templates from tests import conftest, testbed_utils @@ -118,57 +117,6 @@ def test_core_counts_exported(mock_db_core): assert set(manifest["export_config"]["export_list"]) == set(count_tables) -# for this one, since the query output is very long and likely to change -# since it's a study table, we're going to do targeted comparisons around the -# polymorphism and not validate the whole thing - - -# omitting the double false case since we don't call thison that condition -@pytest.mark.parametrize( - "medication_datasources,contains,omits", - [ - ( - { - "by_contained_ref": True, - "by_external_ref": False, - }, - ["LIKE '#%'", "contained_medication"], - ["LIKE 'Medication/%'", "UNION", "external_medication"], - ), - ( - { - "by_contained_ref": False, - "by_external_ref": True, - }, - ["LIKE 'Medication/%'", "external_medication"], - ["LIKE '#%'", "UNION", "contained_medication"], - ), - ( - { - "by_contained_ref": True, - "by_external_ref": True, - }, - [ - "LIKE '#%'", - "LIKE 'Medication/%'", - "UNION", - "contained_medication", - "external_medication", - ], - [], - ), - ], -) -def test_core_medication_query(medication_datasources, contains, omits): - query = core_templates.get_core_template( - "medication", config={"medication_datasources": medication_datasources} - ) - for item in contains: - assert item in query - for item in omits: - assert item not in query - - def test_core_empty_database(tmp_path): """Verify that we can still generate core tables with no data filled in""" testbed = testbed_utils.LocalTestbed(tmp_path, with_patient=False) @@ -181,6 +129,7 @@ def test_core_tiny_database(tmp_path): # Just add bare resources, with minimal data testbed.add_condition("ConA") testbed.add_encounter("EncA") + testbed.add_medication_request("MedReqA") con = testbed.build() patients = con.sql("SELECT id FROM core__patient").fetchall() assert {e[0] for e in patients} == {"A"} @@ -188,6 +137,8 @@ def test_core_tiny_database(tmp_path): assert {c[0] for c in conditions} == {"ConA"} encounters = con.sql("SELECT id FROM core__encounter").fetchall() assert {e[0] for e in encounters} == {"EncA"} + rows = con.sql("SELECT id FROM core__medicationrequest").fetchall() + assert {r[0] for r in rows} == {"MedReqA"} def test_core_multiple_doc_encounters(tmp_path): diff --git a/tests/core/test_core_meds.py b/tests/core/test_core_meds.py new file mode 100644 index 00000000..a50bbcdd --- /dev/null +++ b/tests/core/test_core_meds.py @@ -0,0 +1,117 @@ +"""Tests for core__medicationrequest""" + +import json + +import pytest + +from tests import testbed_utils + +RXNORM = "http://www.nlm.nih.gov/research/umls/rxnorm" + + +@pytest.mark.parametrize( + "dosage,expected", + [ + (None, [None]), # No dosage + ([{"sequence": 12}], [None]), # Irrelevant dosage + ([{"text": "One"}], ["One"]), # Single dosage + ( # Multiple dosages + [{"text": "Multi1"}, {"text": "Multi2"}, {"sequence": 1}], + ["Multi1", "Multi2"], + ), + ], +) +def test_core_medreq_dosage(tmp_path, dosage, expected): + """Verify that dosage text is optionally included""" + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_medication_request("A", dosageInstruction=dosage) + con = testbed.build() + texts = con.sql( + "SELECT dosageInstruction_text FROM core__medicationrequest " + "ORDER BY dosageInstruction_text" + ).fetchall() + assert [x[0] for x in texts] == expected + + +@pytest.mark.parametrize( + "codings,expected", + [ + ([{"code": "A", "system": RXNORM}], ["A"]), # one code + ([{"code": "A", "system": "nope"}], []), # skip non-rxnorm + ( + [{"code": "A", "system": RXNORM}, {"code": "B", "system": "nope"}], + ["A"], # ignores non-rxnorm, but keeps good ones + ), + ( + [{"code": "A", "system": RXNORM}, {"code": "B", "system": RXNORM}], + ["A", "B"], + ), + ], +) +def test_core_medreq_only_rxnorm(tmp_path, codings, expected): + """Verify that we only include rxnorm codes + + Note: this test was written against the found behavior at the time. + It's not clear this is how we *want* this table to behave. + """ + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_medication_request("A", codings=codings) + con = testbed.build() + codes = con.sql( + "SELECT medication_code FROM core__medicationrequest " + "ORDER BY medication_code" + ).fetchall() + assert [x[0] for x in codes] == expected + + +def test_core_medreq_only_inline(tmp_path): + """Verify that we only include inline medication requests + + Note: this test was written against the found behavior at the time. + It's not clear this is how we *want* this table to behave. + """ + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_medication_request("Inline", mode="inline") + testbed.add_medication_request("Contained", mode="contained") + testbed.add_medication_request("External", mode="external") + con = testbed.build() + ids = con.sql("SELECT id FROM core__medicationrequest ORDER BY id").fetchall() + assert [x[0] for x in ids] == ["Inline"] + + +def test_core_med_all_types(tmp_path): + """Verify that we handle all types of medications""" + testbed = testbed_utils.LocalTestbed(tmp_path) + med_args = { + "codings": [ + { + "code": "c", + "system": "letters", + "display": "C", + "userSelected": True, + } + ], + "encounter": {"reference": "Encounter/E"}, + "subject": {"reference": "Patient/P"}, + } + testbed.add_medication_request("Inline", mode="inline", **med_args) + testbed.add_medication_request("Contained", mode="contained", **med_args) + testbed.add_medication_request("External", mode="external", **med_args) + + con = testbed.build() + df = con.sql("SELECT * FROM core__medication ORDER BY id").df() + rows = json.loads(df.to_json(orient="records")) + + expected_body = { + "code": "c", + "code_system": "letters", + "display": "C", + "encounter_ref": "Encounter/E", + "patient_ref": "Patient/P", + "userSelected": True, + } + assert [ + {"id": "Contained", **expected_body}, + {"id": "External", **expected_body}, + {"id": "Inline", **expected_body}, + ] == rows diff --git a/tests/core/test_core_observation.py b/tests/core/test_core_observation.py index c2cbf0ea..93631cb0 100644 --- a/tests/core/test_core_observation.py +++ b/tests/core/test_core_observation.py @@ -154,6 +154,7 @@ def test_core_observation_component(tmp_path): "code": "hello", "code_system": "hi-codes", "display": "Hello!", + "userSelected": False, }, { "id": "Multiple components", @@ -161,6 +162,7 @@ def test_core_observation_component(tmp_path): "code": "34", "code_system": "codesys", "display": None, + "userSelected": False, }, { "id": "Multiple components", @@ -168,6 +170,7 @@ def test_core_observation_component(tmp_path): "code": "thirty-four", "code_system": "codesys-alpha", "display": None, + "userSelected": False, }, { "id": "Multiple components", @@ -175,6 +178,7 @@ def test_core_observation_component(tmp_path): "code": "42", "code_system": "codesys", "display": None, + "userSelected": False, }, { "id": "Multiple components", @@ -182,6 +186,7 @@ def test_core_observation_component(tmp_path): "code": "forty-two", "code_system": "codesys-alpha", "display": None, + "userSelected": False, }, ] == rows @@ -197,6 +202,7 @@ def test_core_observation_component(tmp_path): "code": "d", "code_system": "letters", "display": "D", + "userSelected": False, }, { "id": "Multiple components", @@ -204,6 +210,7 @@ def test_core_observation_component(tmp_path): "code": "dog", "code_system": "s", "display": "dog ate it", + "userSelected": False, }, { "id": "Multiple components", @@ -211,6 +218,7 @@ def test_core_observation_component(tmp_path): "code": "shrug", "code_system": "s", "display": "gone", + "userSelected": False, }, ] == rows @@ -226,6 +234,7 @@ def test_core_observation_component(tmp_path): "code": "i", "code_system": "letters", "display": "I", + "userSelected": False, }, { "id": "Multiple components", @@ -233,6 +242,7 @@ def test_core_observation_component(tmp_path): "code": "low", "code_system": "high-or-low", "display": None, + "userSelected": False, }, { "id": "Multiple components", @@ -240,6 +250,7 @@ def test_core_observation_component(tmp_path): "code": "good", "code_system": "quality", "display": "Good", + "userSelected": False, }, { "id": "Multiple components", @@ -247,6 +258,7 @@ def test_core_observation_component(tmp_path): "code": "high", "code_system": "high-or-low", "display": None, + "userSelected": False, }, { "id": "Multiple components", @@ -254,6 +266,7 @@ def test_core_observation_component(tmp_path): "code": None, "code_system": None, "display": "Pumped about this one", + "userSelected": False, }, ] == rows @@ -269,6 +282,7 @@ def test_core_observation_component(tmp_path): "code": "v", "code_system": "letters", "display": "V", + "userSelected": False, }, { "id": "Multiple components", @@ -276,6 +290,7 @@ def test_core_observation_component(tmp_path): "code": None, "code_system": None, "display": "homework", + "userSelected": False, }, ] == rows diff --git a/tests/regression/reference/core__count_medicationrequest_month.csv b/tests/regression/reference/core__count_medicationrequest_month.csv index 193bca43..9f57ba6d 100644 --- a/tests/regression/reference/core__count_medicationrequest_month.csv +++ b/tests/regression/reference/core__count_medicationrequest_month.csv @@ -1,16 +1,24 @@ cnt,status,intent,authoredon_month,medication_display -931,,,, -931,,order,, -898,stopped,,, -898,stopped,order,, -665,active,,, -665,active,order,, +1094,,,, +1094,,order,, +1074,stopped,,, +1074,stopped,order,, +767,active,,, +767,active,order,, +439,,,,Acetaminophen 325 MG Oral Tablet +439,,order,,Acetaminophen 325 MG Oral Tablet +439,stopped,,,Acetaminophen 325 MG Oral Tablet +439,stopped,order,,Acetaminophen 325 MG Oral Tablet 242,,,,lisinopril 10 MG Oral Tablet 242,,order,,lisinopril 10 MG Oral Tablet 241,active,,,lisinopril 10 MG Oral Tablet 241,active,order,,lisinopril 10 MG Oral Tablet 235,stopped,,,lisinopril 10 MG Oral Tablet 235,stopped,order,,lisinopril 10 MG Oral Tablet +218,,,,Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet +218,,order,,Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet +217,stopped,,,Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet +217,stopped,order,,Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet 204,,,,amLODIPine 2.5 MG Oral Tablet 204,,order,,amLODIPine 2.5 MG Oral Tablet 203,stopped,,,amLODIPine 2.5 MG Oral Tablet @@ -21,1293 +29,1696 @@ cnt,status,intent,authoredon_month,medication_display 201,,order,,Hydrochlorothiazide 25 MG Oral Tablet 201,active,,,Hydrochlorothiazide 25 MG Oral Tablet 201,active,order,,Hydrochlorothiazide 25 MG Oral Tablet +200,,,,Naproxen sodium 220 MG Oral Tablet +200,,order,,Naproxen sodium 220 MG Oral Tablet 200,stopped,,,Hydrochlorothiazide 25 MG Oral Tablet 200,stopped,order,,Hydrochlorothiazide 25 MG Oral Tablet -153,,,,Acetaminophen 325 MG Oral Tablet -153,,order,,Acetaminophen 325 MG Oral Tablet -153,stopped,,,Acetaminophen 325 MG Oral Tablet -153,stopped,order,,Acetaminophen 325 MG Oral Tablet -150,,,,Naproxen sodium 220 MG Oral Tablet -150,,order,,Naproxen sodium 220 MG Oral Tablet +192,,,,Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray +192,,order,,Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray +192,active,,,Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray +192,active,order,,Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray +187,,,,24 HR metoprolol succinate 100 MG Extended Release Oral Tablet +187,,order,,24 HR metoprolol succinate 100 MG Extended Release Oral Tablet +187,active,,,24 HR metoprolol succinate 100 MG Extended Release Oral Tablet +187,active,order,,24 HR metoprolol succinate 100 MG Extended Release Oral Tablet +168,,,2014-02-01, +168,,order,2014-02-01, +167,stopped,,2014-02-01, +167,stopped,order,2014-02-01, +159,,,,Simvastatin 20 MG Oral Tablet +159,,order,,Simvastatin 20 MG Oral Tablet +159,active,,,Simvastatin 20 MG Oral Tablet +159,active,order,,Simvastatin 20 MG Oral Tablet +150,,,,Clopidogrel 75 MG Oral Tablet +150,,order,,Clopidogrel 75 MG Oral Tablet +150,active,,,Clopidogrel 75 MG Oral Tablet +150,active,order,,Clopidogrel 75 MG Oral Tablet 148,stopped,,,Naproxen sodium 220 MG Oral Tablet 148,stopped,order,,Naproxen sodium 220 MG Oral Tablet 146,,,,Ibuprofen 200 MG Oral Tablet 146,,order,,Ibuprofen 200 MG Oral Tablet 146,stopped,,,Ibuprofen 200 MG Oral Tablet 146,stopped,order,,Ibuprofen 200 MG Oral Tablet -142,,,2014-02-01, -142,,order,2014-02-01, -141,stopped,,2014-02-01, -141,stopped,order,2014-02-01, +134,,,,Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution +134,,order,,Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution +133,stopped,,,Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution +133,stopped,order,,Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution +121,,,2017-03-01, +121,,order,2017-03-01, +120,,,2018-03-01, +120,,order,2018-03-01, +120,stopped,,2017-03-01, +120,stopped,order,2017-03-01, 119,,,,Acetaminophen 160 MG Chewable Tablet +119,,,2019-03-01, 119,,order,,Acetaminophen 160 MG Chewable Tablet +119,,order,2019-03-01, 118,stopped,,,Acetaminophen 160 MG Chewable Tablet +118,stopped,,2019-03-01, +118,stopped,,2018-03-01, 118,stopped,order,,Acetaminophen 160 MG Chewable Tablet +118,stopped,order,2019-03-01, +118,stopped,order,2018-03-01, +117,,,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +117,,,2022-03-01, +117,,,2021-03-01, +117,,order,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +117,,order,2022-03-01, +117,,order,2021-03-01, +117,stopped,,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +117,stopped,,2021-03-01, +117,stopped,order,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +117,stopped,order,2021-03-01, 116,,,,Simvastatin 10 MG Oral Tablet +116,,,2014-05-01, +116,,,2014-04-01, 116,,order,,Simvastatin 10 MG Oral Tablet +116,,order,2014-05-01, +116,,order,2014-04-01, +116,active,,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 116,active,,,Simvastatin 10 MG Oral Tablet +116,active,order,,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 116,active,order,,Simvastatin 10 MG Oral Tablet 115,stopped,,,Simvastatin 10 MG Oral Tablet 115,stopped,order,,Simvastatin 10 MG Oral Tablet +114,,,2020-03-01, +114,,order,2020-03-01, 113,,,,Ibuprofen 100 MG Oral Tablet 113,,order,,Ibuprofen 100 MG Oral Tablet +113,stopped,,2020-03-01, +113,stopped,,2014-05-01, +113,stopped,order,2020-03-01, +113,stopped,order,2014-05-01, 112,,,,NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector 112,,order,,NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector 112,active,,,NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector 112,active,order,,NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector +110,,,2019-05-01, +110,,order,2019-05-01, 110,stopped,,,Ibuprofen 100 MG Oral Tablet 110,stopped,order,,Ibuprofen 100 MG Oral Tablet -104,,,2018-03-01, -104,,order,2018-03-01, -102,stopped,,2018-03-01, -102,stopped,order,2018-03-01, -100,,,2020-03-01, -100,,order,2020-03-01, -99,,,2014-05-01, -99,,order,2014-05-01, -99,stopped,,2020-03-01, -99,stopped,order,2020-03-01, -97,,,2021-03-01, -97,,order,2021-03-01, -96,,,2019-03-01, -96,,order,2019-03-01, -96,stopped,,2021-03-01, -96,stopped,,2014-05-01, -96,stopped,order,2021-03-01, -96,stopped,order,2014-05-01, -95,stopped,,2019-03-01, -95,stopped,order,2019-03-01, +109,,,2019-08-01, +109,,,2019-02-01, +109,,,2014-03-01, +109,,order,2019-08-01, +109,,order,2019-02-01, +109,,order,2014-03-01, +109,stopped,,2019-05-01, +109,stopped,order,2019-05-01, +108,,,2022-04-01, +108,,,2021-09-01, +108,,,2020-01-01, +108,,,2014-12-01, +108,,order,2022-04-01, +108,,order,2021-09-01, +108,,order,2020-01-01, +108,,order,2014-12-01, +107,,,2016-02-01, +107,,,2015-02-01, +107,,,2014-07-01, +107,,,2014-01-01, +107,,order,2016-02-01, +107,,order,2015-02-01, +107,,order,2014-07-01, +107,,order,2014-01-01, +107,stopped,,2019-08-01, +107,stopped,,2019-02-01, +107,stopped,,2016-02-01, +107,stopped,,2015-02-01, +107,stopped,order,2019-08-01, +107,stopped,order,2019-02-01, +107,stopped,order,2016-02-01, +107,stopped,order,2015-02-01, +106,,,2016-01-01, +106,,order,2016-01-01, +106,stopped,,2021-09-01, +106,stopped,,2014-04-01, +106,stopped,,2014-01-01, +106,stopped,order,2021-09-01, +106,stopped,order,2014-04-01, +106,stopped,order,2014-01-01, +105,,,2023-03-01, +105,,,2018-08-01, +105,,,2015-01-01, +105,,order,2023-03-01, +105,,order,2018-08-01, +105,,order,2015-01-01, +105,stopped,,2016-01-01, +105,stopped,,2014-12-01, +105,stopped,order,2016-01-01, +105,stopped,order,2014-12-01, +104,,,2022-05-01, +104,,,2018-05-01, +104,,order,2022-05-01, +104,,order,2018-05-01, +104,stopped,,2018-08-01, +104,stopped,,2014-07-01, +104,stopped,order,2018-08-01, +104,stopped,order,2014-07-01, +103,,,2022-07-01, +103,,,2022-06-01, +103,,,2020-05-01, +103,,,2016-09-01, +103,,order,2022-07-01, +103,,order,2022-06-01, +103,,order,2020-05-01, +103,,order,2016-09-01, +103,stopped,,2022-03-01, +103,stopped,,2016-09-01, +103,stopped,order,2022-03-01, +103,stopped,order,2016-09-01, +102,,,2021-06-01, +102,,,2019-01-01, +102,,order,2021-06-01, +102,,order,2019-01-01, +102,stopped,,2020-05-01, +102,stopped,,2020-01-01, +102,stopped,,2018-05-01, +102,stopped,,2015-01-01, +102,stopped,order,2020-05-01, +102,stopped,order,2020-01-01, +102,stopped,order,2018-05-01, +102,stopped,order,2015-01-01, +101,,,2020-06-01, +101,,,2017-07-01, +101,,,2017-01-01, +101,,order,2020-06-01, +101,,order,2017-07-01, +101,,order,2017-01-01, +101,stopped,,2021-06-01, +101,stopped,,2019-01-01, +101,stopped,order,2021-06-01, +101,stopped,order,2019-01-01, +100,,,2023-02-01, +100,,,2020-10-01, +100,,order,2023-02-01, +100,,order,2020-10-01, +100,stopped,,2020-06-01, +100,stopped,order,2020-06-01, +99,,,2022-12-01, +99,,,2021-10-01, +99,,,2021-08-01, +99,,,2017-05-01, +99,,order,2022-12-01, +99,,order,2021-10-01, +99,,order,2021-08-01, +99,,order,2017-05-01, +99,stopped,,2020-10-01, +99,stopped,,2017-07-01, +99,stopped,,2017-05-01, +99,stopped,,2014-03-01, +99,stopped,order,2020-10-01, +99,stopped,order,2017-07-01, +99,stopped,order,2017-05-01, +99,stopped,order,2014-03-01, +98,,,2022-10-01, +98,,,2022-09-01, +98,,,2022-08-01, +98,,,2021-01-01, +98,,,2018-09-01, +98,,,2017-09-01, +98,,order,2022-10-01, +98,,order,2022-09-01, +98,,order,2022-08-01, +98,,order,2021-01-01, +98,,order,2018-09-01, +98,,order,2017-09-01, +98,stopped,,2021-10-01, +98,stopped,,2021-08-01, +98,stopped,,2017-01-01, +98,stopped,order,2021-10-01, +98,stopped,order,2021-08-01, +98,stopped,order,2017-01-01, +97,,,2021-12-01, +97,,,2018-06-01, +97,,,2017-06-01, +97,,,2015-11-01, +97,,order,2021-12-01, +97,,order,2018-06-01, +97,,order,2017-06-01, +97,,order,2015-11-01, +97,stopped,,2021-12-01, +97,stopped,,2021-01-01, +97,stopped,,2018-06-01, +97,stopped,,2015-11-01, +97,stopped,order,2021-12-01, +97,stopped,order,2021-01-01, +97,stopped,order,2018-06-01, +97,stopped,order,2015-11-01, +96,,,2021-05-01, +96,,,2021-02-01, +96,,,2020-09-01, +96,,,2016-03-01, +96,,,2014-06-01, +96,,order,2021-05-01, +96,,order,2021-02-01, +96,,order,2020-09-01, +96,,order,2016-03-01, +96,,order,2014-06-01, +96,stopped,,2018-09-01, +96,stopped,,2017-09-01, +96,stopped,order,2018-09-01, +96,stopped,order,2017-09-01, +95,,,2023-01-01, +95,,,2020-02-01, +95,,,2018-01-01, +95,,,2017-12-01, +95,,,2016-08-01, +95,,,2015-04-01, +95,,,2014-11-01, +95,,,2014-09-01, +95,,order,2023-01-01, +95,,order,2020-02-01, +95,,order,2018-01-01, +95,,order,2017-12-01, +95,,order,2016-08-01, +95,,order,2015-04-01, +95,,order,2014-11-01, +95,,order,2014-09-01, +95,stopped,,2021-05-01, +95,stopped,,2020-09-01, +95,stopped,,2018-01-01, +95,stopped,,2016-08-01, +95,stopped,,2015-04-01, +95,stopped,order,2021-05-01, +95,stopped,order,2020-09-01, +95,stopped,order,2018-01-01, +95,stopped,order,2016-08-01, +95,stopped,order,2015-04-01, 94,,,,Amoxicillin 500 MG Oral Tablet +94,,,2019-10-01, +94,,,2016-12-01, +94,,,2015-07-01, 94,,order,,Amoxicillin 500 MG Oral Tablet -93,,,2014-04-01, -93,,order,2014-04-01, -92,,,2017-03-01, -92,,order,2017-03-01, +94,,order,2019-10-01, +94,,order,2016-12-01, +94,,order,2015-07-01, +94,stopped,,2020-02-01, +94,stopped,,2017-12-01, +94,stopped,,2016-03-01, +94,stopped,,2014-09-01, +94,stopped,order,2020-02-01, +94,stopped,order,2017-12-01, +94,stopped,order,2016-03-01, +94,stopped,order,2014-09-01, +93,,,2021-04-01, +93,,,2020-08-01, +93,,,2020-07-01, +93,,order,2021-04-01, +93,,order,2020-08-01, +93,,order,2020-07-01, +93,stopped,,2021-02-01, +93,stopped,,2019-10-01, +93,stopped,,2015-07-01, +93,stopped,,2014-11-01, +93,stopped,order,2021-02-01, +93,stopped,order,2019-10-01, +93,stopped,order,2015-07-01, +93,stopped,order,2014-11-01, +92,,,2022-02-01, +92,,,2021-07-01, +92,,,2019-04-01, +92,,,2017-08-01, +92,,order,2022-02-01, +92,,order,2021-07-01, +92,,order,2019-04-01, +92,,order,2017-08-01, 92,stopped,,,Amoxicillin 500 MG Oral Tablet -92,stopped,,2017-03-01, +92,stopped,,2022-02-01, +92,stopped,,2021-04-01, +92,stopped,,2020-08-01, +92,stopped,,2019-04-01, +92,stopped,,2017-08-01, +92,stopped,,2016-12-01, 92,stopped,order,,Amoxicillin 500 MG Oral Tablet -92,stopped,order,2017-03-01, -89,,,2023-03-01, -89,,order,2023-03-01, -88,,,2014-03-01, -88,,order,2014-03-01, -87,,,2022-03-01, -87,,,2014-01-01, -87,,order,2022-03-01, -87,,order,2014-01-01, -86,,,2022-04-01, -86,,order,2022-04-01, -86,stopped,,2014-01-01, -86,stopped,order,2014-01-01, -84,,,2021-09-01, -84,,order,2021-09-01, -84,stopped,,2014-04-01, -84,stopped,order,2014-04-01, -84,active,,2023-03-01, -84,active,order,2023-03-01, -83,,,2019-02-01, -83,,order,2019-02-01, -83,stopped,,2021-09-01, -83,stopped,,2019-02-01, -83,stopped,order,2021-09-01, -83,stopped,order,2019-02-01, -82,,,2019-08-01, -82,,order,2019-08-01, -81,,,2021-06-01, -81,,,2021-02-01, -81,,order,2021-06-01, -81,,order,2021-02-01, -80,,,2021-08-01, -80,,,2020-06-01, -80,,,2017-01-01, -80,,,2016-02-01, -80,,,2015-01-01, -80,,order,2021-08-01, -80,,order,2020-06-01, -80,,order,2017-01-01, -80,,order,2016-02-01, -80,,order,2015-01-01, -80,stopped,,2021-08-01, -80,stopped,,2021-06-01, -80,stopped,,2021-02-01, -80,stopped,,2019-08-01, -80,stopped,,2016-02-01, -80,stopped,order,2021-08-01, -80,stopped,order,2021-06-01, -80,stopped,order,2021-02-01, -80,stopped,order,2019-08-01, -80,stopped,order,2016-02-01, -79,,,2022-06-01, -79,,,2021-01-01, -79,,,2018-05-01, -79,,,2016-01-01, -79,,order,2022-06-01, -79,,order,2021-01-01, -79,,order,2018-05-01, -79,,order,2016-01-01, -79,stopped,,2021-01-01, -79,stopped,,2020-06-01, -79,stopped,,2016-01-01, -79,stopped,,2015-01-01, -79,stopped,order,2021-01-01, -79,stopped,order,2020-06-01, -79,stopped,order,2016-01-01, -79,stopped,order,2015-01-01, -78,,,2022-07-01, -78,,,2020-08-01, -78,,,2020-01-01, -78,,,2019-05-01, -78,,,2019-01-01, -78,,,2018-08-01, -78,,,2017-07-01, -78,,order,2022-07-01, -78,,order,2020-08-01, -78,,order,2020-01-01, -78,,order,2019-05-01, -78,,order,2019-01-01, -78,,order,2018-08-01, -78,,order,2017-07-01, -78,stopped,,2017-01-01, -78,stopped,,2014-03-01, -78,stopped,order,2017-01-01, -78,stopped,order,2014-03-01, -77,,,2021-12-01, -77,,,2020-02-01, -77,,order,2021-12-01, -77,,order,2020-02-01, -77,stopped,,2021-12-01, -77,stopped,,2020-08-01, -77,stopped,,2019-05-01, -77,stopped,,2019-01-01, -77,stopped,,2018-08-01, -77,stopped,,2018-05-01, -77,stopped,order,2021-12-01, -77,stopped,order,2020-08-01, -77,stopped,order,2019-05-01, -77,stopped,order,2019-01-01, -77,stopped,order,2018-08-01, -77,stopped,order,2018-05-01, +92,stopped,order,2022-02-01, +92,stopped,order,2021-04-01, +92,stopped,order,2020-08-01, +92,stopped,order,2019-04-01, +92,stopped,order,2017-08-01, +92,stopped,order,2016-12-01, +91,,,2022-01-01, +91,,,2020-12-01, +91,,,2019-06-01, +91,,,2017-10-01, +91,,,2016-05-01, +91,,,2015-05-01, +91,,order,2022-01-01, +91,,order,2020-12-01, +91,,order,2019-06-01, +91,,order,2017-10-01, +91,,order,2016-05-01, +91,,order,2015-05-01, +91,stopped,,2020-12-01, +91,stopped,,2017-06-01, +91,stopped,,2015-05-01, +91,stopped,,2014-06-01, +91,stopped,order,2020-12-01, +91,stopped,order,2017-06-01, +91,stopped,order,2015-05-01, +91,stopped,order,2014-06-01, +90,,,2022-11-01, +90,,,2020-11-01, +90,,,2018-12-01, +90,,,2016-10-01, +90,,,2015-12-01, +90,,order,2022-11-01, +90,,order,2020-11-01, +90,,order,2018-12-01, +90,,order,2016-10-01, +90,,order,2015-12-01, +90,stopped,,2022-01-01, +90,stopped,,2020-07-01, +90,stopped,,2018-12-01, +90,stopped,,2017-10-01, +90,stopped,,2016-05-01, +90,stopped,order,2022-01-01, +90,stopped,order,2020-07-01, +90,stopped,order,2018-12-01, +90,stopped,order,2017-10-01, +90,stopped,order,2016-05-01, +90,active,,2023-03-01, +90,active,order,2023-03-01, +89,,,2016-07-01, +89,,,2015-03-01, +89,,order,2016-07-01, +89,,order,2015-03-01, +89,stopped,,2020-11-01, +89,stopped,,2019-06-01, +89,stopped,,2016-07-01, +89,stopped,order,2020-11-01, +89,stopped,order,2019-06-01, +89,stopped,order,2016-07-01, +88,,,2020-04-01, +88,,,2019-09-01, +88,,,2018-10-01, +88,,,2016-06-01, +88,,,2015-10-01, +88,,,2015-09-01, +88,,,2014-08-01, +88,,order,2020-04-01, +88,,order,2019-09-01, +88,,order,2018-10-01, +88,,order,2016-06-01, +88,,order,2015-10-01, +88,,order,2015-09-01, +88,,order,2014-08-01, +88,stopped,,2021-07-01, +88,stopped,,2020-04-01, +88,stopped,,2018-10-01, +88,stopped,,2015-12-01, +88,stopped,,2015-09-01, +88,stopped,order,2021-07-01, +88,stopped,order,2020-04-01, +88,stopped,order,2018-10-01, +88,stopped,order,2015-12-01, +88,stopped,order,2015-09-01, +87,,,2019-11-01, +87,,,2018-11-01, +87,,,2018-02-01, +87,,,2014-10-01, +87,,order,2019-11-01, +87,,order,2018-11-01, +87,,order,2018-02-01, +87,,order,2014-10-01, +87,stopped,,2018-11-01, +87,stopped,,2016-10-01, +87,stopped,,2016-06-01, +87,stopped,,2015-10-01, +87,stopped,,2015-03-01, +87,stopped,order,2018-11-01, +87,stopped,order,2016-10-01, +87,stopped,order,2016-06-01, +87,stopped,order,2015-10-01, +87,stopped,order,2015-03-01, +86,,,2017-11-01, +86,,,2017-02-01, +86,,order,2017-11-01, +86,,order,2017-02-01, +86,stopped,,2019-11-01, +86,stopped,,2018-02-01, +86,stopped,,2017-11-01, +86,stopped,order,2019-11-01, +86,stopped,order,2018-02-01, +86,stopped,order,2017-11-01, +85,,,2019-07-01, +85,,,2013-12-01, +85,,order,2019-07-01, +85,,order,2013-12-01, +85,stopped,,2017-02-01, +85,stopped,order,2017-02-01, +84,,,2018-04-01, +84,,,2015-06-01, +84,,,2013-10-01, +84,,order,2018-04-01, +84,,order,2015-06-01, +84,,order,2013-10-01, +84,stopped,,2019-09-01, +84,stopped,,2019-07-01, +84,stopped,,2018-04-01, +84,stopped,,2015-06-01, +84,stopped,,2014-08-01, +84,stopped,order,2019-09-01, +84,stopped,order,2019-07-01, +84,stopped,order,2018-04-01, +84,stopped,order,2015-06-01, +84,stopped,order,2014-08-01, +83,,,2019-12-01, +83,,,2013-09-01, +83,,order,2019-12-01, +83,,order,2013-09-01, +83,stopped,,2014-10-01, +83,stopped,,2013-12-01, +83,stopped,order,2014-10-01, +83,stopped,order,2013-12-01, +82,,,,Penicillin V Potassium 500 MG Oral Tablet +82,,,,Penicillin V Potassium 250 MG Oral Tablet +82,,,2015-08-01, +82,,,2013-08-01, +82,,,2013-07-01, +82,,order,,Penicillin V Potassium 500 MG Oral Tablet +82,,order,,Penicillin V Potassium 250 MG Oral Tablet +82,,order,2015-08-01, +82,,order,2013-08-01, +82,,order,2013-07-01, +82,stopped,,,Penicillin V Potassium 500 MG Oral Tablet +82,stopped,,,Penicillin V Potassium 250 MG Oral Tablet +82,stopped,,2013-09-01, +82,stopped,,2013-07-01, +82,stopped,order,,Penicillin V Potassium 500 MG Oral Tablet +82,stopped,order,,Penicillin V Potassium 250 MG Oral Tablet +82,stopped,order,2013-09-01, +82,stopped,order,2013-07-01, +81,,,2016-04-01, +81,,order,2016-04-01, +81,stopped,,2019-12-01, +81,stopped,,2016-04-01, +81,stopped,,2015-08-01, +81,stopped,,2013-10-01, +81,stopped,order,2019-12-01, +81,stopped,order,2016-04-01, +81,stopped,order,2015-08-01, +81,stopped,order,2013-10-01, +80,,,2021-11-01, +80,,order,2021-11-01, +79,,,2016-11-01, +79,,order,2016-11-01, +79,stopped,,2021-11-01, +79,stopped,,2013-08-01, +79,stopped,order,2021-11-01, +79,stopped,order,2013-08-01, +78,,,2018-07-01, +78,,order,2018-07-01, +78,stopped,,2016-11-01, +78,stopped,order,2016-11-01, +77,,,2013-05-01, +77,,,2013-04-01, +77,,order,2013-05-01, +77,,order,2013-04-01, 76,,,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet -76,,,2021-07-01, -76,,,2017-05-01, -76,,,2015-04-01, +76,,,2012-01-01, 76,,order,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet -76,,order,2021-07-01, -76,,order,2017-05-01, -76,,order,2015-04-01, -76,stopped,,2020-02-01, -76,stopped,,2017-07-01, -76,stopped,,2017-05-01, -76,stopped,,2015-04-01, -76,stopped,order,2020-02-01, -76,stopped,order,2017-07-01, -76,stopped,order,2017-05-01, -76,stopped,order,2015-04-01, +76,,order,2012-01-01, +76,stopped,,2013-05-01, +76,stopped,order,2013-05-01, 76,active,,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 76,active,order,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet -75,,,2021-10-01, -75,,,2021-05-01, -75,,,2020-10-01, -75,,,2015-02-01, -75,,,2014-12-01, -75,,,2014-09-01, -75,,,2014-07-01, -75,,,2014-06-01, -75,,order,2021-10-01, -75,,order,2021-05-01, -75,,order,2020-10-01, -75,,order,2015-02-01, -75,,order,2014-12-01, -75,,order,2014-09-01, -75,,order,2014-07-01, -75,,order,2014-06-01, -75,stopped,,2021-05-01, -75,stopped,,2015-02-01, -75,stopped,,2014-12-01, -75,stopped,,2014-09-01, -75,stopped,order,2021-05-01, -75,stopped,order,2015-02-01, -75,stopped,order,2014-12-01, -75,stopped,order,2014-09-01, -74,,,2020-05-01, -74,,,2018-06-01, -74,,order,2020-05-01, -74,,order,2018-06-01, -74,stopped,,2022-03-01, -74,stopped,,2021-10-01, -74,stopped,,2021-07-01, -74,stopped,,2020-10-01, -74,stopped,,2020-01-01, -74,stopped,,2018-06-01, -74,stopped,order,2022-03-01, -74,stopped,order,2021-10-01, -74,stopped,order,2021-07-01, -74,stopped,order,2020-10-01, -74,stopped,order,2020-01-01, -74,stopped,order,2018-06-01, -73,,,2022-12-01, -73,,,2022-10-01, -73,,,2022-08-01, -73,,,2022-05-01, -73,,,2018-11-01, -73,,,2018-01-01, -73,,,2016-09-01, -73,,order,2022-12-01, -73,,order,2022-10-01, -73,,order,2022-08-01, -73,,order,2022-05-01, -73,,order,2018-11-01, -73,,order,2018-01-01, -73,,order,2016-09-01, -73,stopped,,2020-05-01, -73,stopped,,2018-11-01, -73,stopped,,2018-01-01, -73,stopped,,2016-09-01, -73,stopped,,2014-07-01, -73,stopped,order,2020-05-01, -73,stopped,order,2018-11-01, -73,stopped,order,2018-01-01, -73,stopped,order,2016-09-01, -73,stopped,order,2014-07-01, -72,,,2022-09-01, -72,,,2021-04-01, -72,,,2019-10-01, -72,,,2017-09-01, -72,,,2016-08-01, -72,,,2016-03-01, -72,,order,2022-09-01, -72,,order,2021-04-01, -72,,order,2019-10-01, -72,,order,2017-09-01, -72,,order,2016-08-01, -72,,order,2016-03-01, -72,stopped,,2021-04-01, -72,stopped,,2019-10-01, -72,stopped,,2017-09-01, -72,stopped,,2016-08-01, -72,stopped,order,2021-04-01, -72,stopped,order,2019-10-01, -72,stopped,order,2017-09-01, -72,stopped,order,2016-08-01, -71,,,2023-02-01, -71,,,2020-09-01, -71,,,2017-10-01, -71,,,2017-06-01, -71,,order,2023-02-01, -71,,order,2020-09-01, -71,,order,2017-10-01, -71,,order,2017-06-01, -71,stopped,,2020-09-01, -71,stopped,,2014-06-01, -71,stopped,order,2020-09-01, -71,stopped,order,2014-06-01, -70,stopped,,2017-10-01, -70,stopped,,2016-03-01, -70,stopped,order,2017-10-01, -70,stopped,order,2016-03-01, -69,,,2022-11-01, -69,,,2022-01-01, -69,,,2018-10-01, -69,,,2015-11-01, -69,,order,2022-11-01, -69,,order,2022-01-01, -69,,order,2018-10-01, -69,,order,2015-11-01, -69,stopped,,2022-01-01, -69,stopped,,2018-10-01, -69,stopped,,2015-11-01, -69,stopped,order,2022-01-01, -69,stopped,order,2018-10-01, -69,stopped,order,2015-11-01, -68,,,2023-01-01, -68,,,2022-02-01, -68,,,2019-11-01, -68,,,2018-09-01, -68,,,2016-12-01, -68,,,2015-06-01, -68,,order,2023-01-01, -68,,order,2022-02-01, -68,,order,2019-11-01, -68,,order,2018-09-01, -68,,order,2016-12-01, -68,,order,2015-06-01, -68,stopped,,2022-02-01, -68,stopped,,2017-06-01, -68,stopped,,2016-12-01, -68,stopped,,2015-06-01, -68,stopped,order,2022-02-01, -68,stopped,order,2017-06-01, -68,stopped,order,2016-12-01, -68,stopped,order,2015-06-01, -67,,,2019-06-01, -67,,,2017-12-01, -67,,,2017-08-01, -67,,,2016-07-01, -67,,,2015-03-01, -67,,order,2019-06-01, -67,,order,2017-12-01, -67,,order,2017-08-01, -67,,order,2016-07-01, -67,,order,2015-03-01, -67,stopped,,2019-11-01, -67,stopped,,2018-09-01, -67,stopped,,2017-12-01, -67,stopped,,2017-08-01, -67,stopped,,2016-07-01, -67,stopped,order,2019-11-01, -67,stopped,order,2018-09-01, -67,stopped,order,2017-12-01, -67,stopped,order,2017-08-01, -67,stopped,order,2016-07-01, -66,,,2018-02-01, -66,,,2016-05-01, -66,,,2014-08-01, -66,,order,2018-02-01, -66,,order,2016-05-01, -66,,order,2014-08-01, -66,stopped,,2019-06-01, -66,stopped,,2015-03-01, -66,stopped,order,2019-06-01, -66,stopped,order,2015-03-01, -65,,,2020-12-01, -65,,,2020-11-01, -65,,,2018-04-01, -65,,,2017-11-01, -65,,,2016-06-01, -65,,,2015-05-01, -65,,,2013-01-01, -65,,order,2020-12-01, -65,,order,2020-11-01, -65,,order,2018-04-01, -65,,order,2017-11-01, -65,,order,2016-06-01, -65,,order,2015-05-01, -65,,order,2013-01-01, -65,stopped,,2020-12-01, -65,stopped,,2018-04-01, -65,stopped,,2018-02-01, -65,stopped,,2017-11-01, -65,stopped,,2016-06-01, -65,stopped,,2015-05-01, -65,stopped,,2013-01-01, -65,stopped,order,2020-12-01, -65,stopped,order,2018-04-01, -65,stopped,order,2018-02-01, -65,stopped,order,2017-11-01, -65,stopped,order,2016-06-01, -65,stopped,order,2015-05-01, -65,stopped,order,2013-01-01, -64,,,2021-11-01, -64,,,2020-07-01, -64,,,2019-07-01, -64,,,2019-04-01, -64,,,2017-02-01, -64,,,2015-12-01, -64,,,2015-07-01, -64,,,2012-01-01, -64,,order,2021-11-01, -64,,order,2020-07-01, -64,,order,2019-07-01, -64,,order,2019-04-01, -64,,order,2017-02-01, -64,,order,2015-12-01, -64,,order,2015-07-01, -64,,order,2012-01-01, -64,stopped,,2020-11-01, -64,stopped,,2019-04-01, -64,stopped,,2017-02-01, -64,stopped,,2016-05-01, -64,stopped,,2015-07-01, -64,stopped,order,2020-11-01, -64,stopped,order,2019-04-01, -64,stopped,order,2017-02-01, -64,stopped,order,2016-05-01, -64,stopped,order,2015-07-01, -63,,,2020-04-01, -63,,,2015-10-01, -63,,,2015-09-01, -63,,,2009-12-01, -63,,order,2020-04-01, -63,,order,2015-10-01, -63,,order,2015-09-01, -63,,order,2009-12-01, -63,stopped,,2021-11-01, -63,stopped,,2020-04-01, -63,stopped,,2019-07-01, -63,stopped,,2015-12-01, -63,stopped,,2015-09-01, -63,stopped,,2009-12-01, -63,stopped,order,2021-11-01, -63,stopped,order,2020-04-01, -63,stopped,order,2019-07-01, -63,stopped,order,2015-12-01, -63,stopped,order,2015-09-01, -63,stopped,order,2009-12-01, -62,,,2013-10-01, -62,,order,2013-10-01, -62,stopped,,2020-07-01, -62,stopped,,2015-10-01, -62,stopped,,2014-08-01, -62,stopped,,2012-01-01, -62,stopped,order,2020-07-01, -62,stopped,order,2015-10-01, -62,stopped,order,2014-08-01, -62,stopped,order,2012-01-01, -61,,,2016-10-01, -61,,,2015-08-01, -61,,,2014-11-01, -61,,,2007-12-01, -61,,order,2016-10-01, -61,,order,2015-08-01, -61,,order,2014-11-01, -61,,order,2007-12-01, -61,stopped,,2007-12-01, -61,stopped,order,2007-12-01, -60,,,2018-12-01, -60,,,2016-04-01, -60,,,2014-10-01, -60,,order,2018-12-01, -60,,order,2016-04-01, -60,,order,2014-10-01, -60,stopped,,2018-12-01, -60,stopped,,2016-04-01, -60,stopped,,2015-08-01, -60,stopped,,2014-11-01, -60,stopped,order,2018-12-01, -60,stopped,order,2016-04-01, -60,stopped,order,2015-08-01, -60,stopped,order,2014-11-01, -59,stopped,,2016-10-01, -59,stopped,,2013-10-01, -59,stopped,order,2016-10-01, -59,stopped,order,2013-10-01, -58,,,2018-07-01, -58,,,2016-11-01, -58,,,2013-09-01, -58,,,2008-12-01, -58,,order,2018-07-01, -58,,order,2016-11-01, -58,,order,2013-09-01, -58,,order,2008-12-01, -58,stopped,,2014-10-01, -58,stopped,,2013-09-01, -58,stopped,,2008-12-01, -58,stopped,order,2014-10-01, -58,stopped,order,2013-09-01, -58,stopped,order,2008-12-01, -57,,,2019-12-01, -57,,,2019-09-01, -57,,order,2019-12-01, -57,,order,2019-09-01, -57,stopped,,2016-11-01, -57,stopped,order,2016-11-01, -56,,,2013-12-01, -56,,order,2013-12-01, -56,stopped,,2019-12-01, -56,stopped,,2019-09-01, -56,stopped,,2018-07-01, -56,stopped,order,2019-12-01, -56,stopped,order,2019-09-01, -56,stopped,order,2018-07-01, -55,,,2012-04-01, -55,,,2010-12-01, -55,,order,2012-04-01, -55,,order,2010-12-01, -54,,,2013-08-01, -54,,order,2013-08-01, -54,stopped,,2013-12-01, -54,stopped,,2012-04-01, -54,stopped,order,2013-12-01, -54,stopped,order,2012-04-01, +75,,,2013-11-01, +75,,order,2013-11-01, +75,stopped,,2018-07-01, +75,stopped,,2013-04-01, +75,stopped,order,2018-07-01, +75,stopped,order,2013-04-01, +74,,,2013-06-01, +74,,,2013-01-01, +74,,order,2013-06-01, +74,,order,2013-01-01, +74,stopped,,2013-11-01, +74,stopped,,2013-01-01, +74,stopped,order,2013-11-01, +74,stopped,order,2013-01-01, +73,,,,Etonogestrel 68 MG Drug Implant +73,,,2017-04-01, +73,,order,,Etonogestrel 68 MG Drug Implant +73,,order,2017-04-01, +73,stopped,,,Etonogestrel 68 MG Drug Implant +73,stopped,,2022-05-01, +73,stopped,,2013-06-01, +73,stopped,,2012-01-01, +73,stopped,order,,Etonogestrel 68 MG Drug Implant +73,stopped,order,2022-05-01, +73,stopped,order,2013-06-01, +73,stopped,order,2012-01-01, +71,stopped,,2017-04-01, +71,stopped,order,2017-04-01, +70,,,,1 ML medroxyprogesterone acetate 150 MG/ML Injection +70,,,2007-12-01, +70,,order,,1 ML medroxyprogesterone acetate 150 MG/ML Injection +70,,order,2007-12-01, +70,stopped,,,1 ML medroxyprogesterone acetate 150 MG/ML Injection +70,stopped,,2007-12-01, +70,stopped,order,,1 ML medroxyprogesterone acetate 150 MG/ML Injection +70,stopped,order,2007-12-01, +69,stopped,,2022-07-01, +69,stopped,order,2022-07-01, +68,,,,Trinessa 28 Day Pack +68,,,,Jolivette 28 Day Pack +68,,,2009-12-01, +68,,order,,Trinessa 28 Day Pack +68,,order,,Jolivette 28 Day Pack +68,,order,2009-12-01, +68,stopped,,2022-06-01, +68,stopped,,2009-12-01, +68,stopped,order,2022-06-01, +68,stopped,order,2009-12-01, +67,,,2012-12-01, +67,,,2012-05-01, +67,,order,2012-12-01, +67,,order,2012-05-01, +66,stopped,,2012-12-01, +66,stopped,order,2012-12-01, +64,,,2011-12-01, +64,,,2008-12-01, +64,,order,2011-12-01, +64,,order,2008-12-01, +64,stopped,,2022-04-01, +64,stopped,,2012-05-01, +64,stopped,,2011-12-01, +64,stopped,,2008-12-01, +64,stopped,order,2022-04-01, +64,stopped,order,2012-05-01, +64,stopped,order,2011-12-01, +64,stopped,order,2008-12-01, +63,,,,Vitamin B12 5 MG/ML Injectable Solution +63,,,2012-04-01, +63,,,2010-01-01, +63,,order,,Vitamin B12 5 MG/ML Injectable Solution +63,,order,2012-04-01, +63,,order,2010-01-01, +63,stopped,,,Jolivette 28 Day Pack +63,stopped,order,,Jolivette 28 Day Pack +63,active,,,Vitamin B12 5 MG/ML Injectable Solution +63,active,order,,Vitamin B12 5 MG/ML Injectable Solution +62,,,,Yaz 28 Day Pack +62,,,,Levora 0.15/30 28 Day Pack +62,,,2013-03-01, +62,,order,,Yaz 28 Day Pack +62,,order,,Levora 0.15/30 28 Day Pack +62,,order,2013-03-01, +62,stopped,,2022-10-01, +62,stopped,,2012-04-01, +62,stopped,order,2022-10-01, +62,stopped,order,2012-04-01, +61,,,,Camila 28 Day Pack +61,,,2012-10-01, +61,,,2012-09-01, +61,,,2010-12-01, +61,,order,,Camila 28 Day Pack +61,,order,2012-10-01, +61,,order,2012-09-01, +61,,order,2010-12-01, +61,stopped,,2010-01-01, +61,stopped,order,2010-01-01, +60,,,2009-04-01, +60,,order,2009-04-01, +60,stopped,,,Trinessa 28 Day Pack +60,stopped,,2013-03-01, +60,stopped,,2012-10-01, +60,stopped,order,,Trinessa 28 Day Pack +60,stopped,order,2013-03-01, +60,stopped,order,2012-10-01, +60,active,,,Naproxen sodium 220 MG Oral Tablet +60,active,order,,Naproxen sodium 220 MG Oral Tablet +59,,,,Natazia 28 Day Pack +59,,,2010-08-01, +59,,,2006-12-01, +59,,order,,Natazia 28 Day Pack +59,,order,2010-08-01, +59,,order,2006-12-01, +59,stopped,,,Levora 0.15/30 28 Day Pack +59,stopped,,2022-12-01, +59,stopped,order,,Levora 0.15/30 28 Day Pack +59,stopped,order,2022-12-01, +58,,,,Errin 28 Day Pack +58,,,2012-06-01, +58,,,2009-03-01, +58,,order,,Errin 28 Day Pack +58,,order,2012-06-01, +58,,order,2009-03-01, +58,stopped,,,Yaz 28 Day Pack +58,stopped,,,Camila 28 Day Pack +58,stopped,,2009-04-01, +58,stopped,order,,Yaz 28 Day Pack +58,stopped,order,,Camila 28 Day Pack +58,stopped,order,2009-04-01, +57,,,2012-11-01, +57,,,2012-07-01, +57,,,2004-11-01, +57,,order,2012-11-01, +57,,order,2012-07-01, +57,,order,2004-11-01, +57,stopped,,2022-09-01, +57,stopped,,2012-11-01, +57,stopped,,2012-09-01, +57,stopped,,2012-06-01, +57,stopped,,2010-08-01, +57,stopped,,2006-12-01, +57,stopped,,2004-11-01, +57,stopped,order,2022-09-01, +57,stopped,order,2012-11-01, +57,stopped,order,2012-09-01, +57,stopped,order,2012-06-01, +57,stopped,order,2010-08-01, +57,stopped,order,2006-12-01, +57,stopped,order,2004-11-01, +56,,,,Seasonique 91 Day Pack +56,,,2012-08-01, +56,,,2011-09-01, +56,,,2011-05-01, +56,,,2010-10-01, +56,,,2010-03-01, +56,,,2008-11-01, +56,,,2005-11-01, +56,,order,,Seasonique 91 Day Pack +56,,order,2012-08-01, +56,,order,2011-09-01, +56,,order,2011-05-01, +56,,order,2010-10-01, +56,,order,2010-03-01, +56,,order,2008-11-01, +56,,order,2005-11-01, +56,stopped,,,Natazia 28 Day Pack +56,stopped,,2022-11-01, +56,stopped,,2012-07-01, +56,stopped,,2010-12-01, +56,stopped,,2010-10-01, +56,stopped,order,,Natazia 28 Day Pack +56,stopped,order,2022-11-01, +56,stopped,order,2012-07-01, +56,stopped,order,2010-12-01, +56,stopped,order,2010-10-01, +55,,,2013-02-01, +55,,,2011-11-01, +55,,,2008-09-01, +55,,,2003-11-01, +55,,order,2013-02-01, +55,,order,2011-11-01, +55,,order,2008-09-01, +55,,order,2003-11-01, +55,stopped,,2011-11-01, +55,stopped,,2011-09-01, +55,stopped,,2011-05-01, +55,stopped,,2010-03-01, +55,stopped,,2009-03-01, +55,stopped,,2005-11-01, +55,stopped,,2003-11-01, +55,stopped,order,2011-11-01, +55,stopped,order,2011-09-01, +55,stopped,order,2011-05-01, +55,stopped,order,2010-03-01, +55,stopped,order,2009-03-01, +55,stopped,order,2005-11-01, +55,stopped,order,2003-11-01, +55,active,,2023-02-01, +55,active,order,2023-02-01, +54,,,2011-10-01, +54,,,2011-01-01, +54,,,2010-05-01, +54,,,2002-11-01, +54,,order,2011-10-01, +54,,order,2011-01-01, +54,,order,2010-05-01, +54,,order,2002-11-01, +54,stopped,,,Seasonique 91 Day Pack +54,stopped,,,Errin 28 Day Pack +54,stopped,,2013-02-01, +54,stopped,,2012-08-01, +54,stopped,,2008-11-01, +54,stopped,,2008-09-01, +54,stopped,order,,Seasonique 91 Day Pack +54,stopped,order,,Errin 28 Day Pack +54,stopped,order,2013-02-01, +54,stopped,order,2012-08-01, +54,stopped,order,2008-11-01, +54,stopped,order,2008-09-01, 53,,,,24 HR tacrolimus 1 MG Extended Release Oral Tablet -53,,,2013-05-01, -53,,,2012-12-01, -53,,,2011-12-01, +53,,,2011-08-01, +53,,,2009-01-01, +53,,,2007-06-01, +53,,,2006-03-01, +53,,,2005-04-01, 53,,order,,24 HR tacrolimus 1 MG Extended Release Oral Tablet -53,,order,2013-05-01, -53,,order,2012-12-01, -53,,order,2011-12-01, -53,stopped,,2013-08-01, -53,stopped,,2012-12-01, -53,stopped,,2011-12-01, -53,stopped,order,2013-08-01, -53,stopped,order,2012-12-01, -53,stopped,order,2011-12-01, -52,,,2017-04-01, -52,,,2013-07-01, -52,,,2013-04-01, -52,,,2010-01-01, -52,,order,2017-04-01, -52,,order,2013-07-01, -52,,order,2013-04-01, -52,,order,2010-01-01, +53,,order,2011-08-01, +53,,order,2009-01-01, +53,,order,2007-06-01, +53,,order,2006-03-01, +53,,order,2005-04-01, +53,stopped,,2023-02-01, +53,stopped,,2023-01-01, +53,stopped,,2022-08-01, +53,stopped,,2011-01-01, +53,stopped,,2009-01-01, +53,stopped,,2006-03-01, +53,stopped,,2002-11-01, +53,stopped,order,2023-02-01, +53,stopped,order,2023-01-01, +53,stopped,order,2022-08-01, +53,stopped,order,2011-01-01, +53,stopped,order,2009-01-01, +53,stopped,order,2006-03-01, +53,stopped,order,2002-11-01, +52,,,2012-03-01, +52,,,2009-05-01, +52,,,2006-11-01, +52,,,2005-12-01, +52,,order,2012-03-01, +52,,order,2009-05-01, +52,,order,2006-11-01, +52,,order,2005-12-01, 52,stopped,,,24 HR tacrolimus 1 MG Extended Release Oral Tablet -52,stopped,,2013-07-01, -52,stopped,,2013-05-01, -52,stopped,,2010-01-01, +52,stopped,,2011-08-01, +52,stopped,,2010-05-01, +52,stopped,,2006-11-01, +52,stopped,,2005-12-01, +52,stopped,,2005-04-01, 52,stopped,order,,24 HR tacrolimus 1 MG Extended Release Oral Tablet -52,stopped,order,2013-07-01, -52,stopped,order,2013-05-01, -52,stopped,order,2010-01-01, -51,,,2013-06-01, -51,,,2012-09-01, -51,,,2010-03-01, -51,,,2009-04-01, -51,,order,2013-06-01, -51,,order,2012-09-01, -51,,order,2010-03-01, -51,,order,2009-04-01, -51,stopped,,2017-04-01, -51,stopped,,2013-04-01, -51,stopped,,2010-12-01, -51,stopped,order,2017-04-01, -51,stopped,order,2013-04-01, -51,stopped,order,2010-12-01, -50,,,2012-05-01, -50,,,2011-05-01, -50,,,2010-08-01, -50,,,2009-03-01, -50,,order,2012-05-01, -50,,order,2011-05-01, -50,,order,2010-08-01, -50,,order,2009-03-01, -50,stopped,,2022-07-01, -50,stopped,,2013-06-01, -50,stopped,,2010-03-01, -50,stopped,,2009-04-01, -50,stopped,order,2022-07-01, -50,stopped,order,2013-06-01, -50,stopped,order,2010-03-01, -50,stopped,order,2009-04-01, -49,,,2011-01-01, -49,,,2008-09-01, -49,,order,2011-01-01, -49,,order,2008-09-01, -49,stopped,,2022-06-01, -49,stopped,,2010-08-01, -49,stopped,order,2022-06-01, -49,stopped,order,2010-08-01, +52,stopped,order,2011-08-01, +52,stopped,order,2010-05-01, +52,stopped,order,2006-11-01, +52,stopped,order,2005-12-01, +52,stopped,order,2005-04-01, +51,,,2008-06-01, +51,,,2006-04-01, +51,,order,2008-06-01, +51,,order,2006-04-01, +51,stopped,,2012-03-01, +51,stopped,,2011-10-01, +51,stopped,order,2012-03-01, +51,stopped,order,2011-10-01, +50,,,2012-02-01, +50,,,2011-06-01, +50,,,2010-11-01, +50,,,2009-10-01, +50,,,2008-01-01, +50,,,2007-04-01, +50,,,2007-03-01, +50,,,2006-01-01, +50,,,2005-07-01, +50,,,2002-08-01, +50,,,2001-11-01, +50,,order,2012-02-01, +50,,order,2011-06-01, +50,,order,2010-11-01, +50,,order,2009-10-01, +50,,order,2008-01-01, +50,,order,2007-04-01, +50,,order,2007-03-01, +50,,order,2006-01-01, +50,,order,2005-07-01, +50,,order,2002-08-01, +50,,order,2001-11-01, +50,stopped,,2009-05-01, +50,stopped,,2008-01-01, +50,stopped,,2007-06-01, +50,stopped,order,2009-05-01, +50,stopped,order,2008-01-01, +50,stopped,order,2007-06-01, +50,active,,2022-04-01, +50,active,order,2022-04-01, +49,,,2010-09-01, +49,,,2009-09-01, +49,,,2009-08-01, +49,,,2009-06-01, +49,,,2008-05-01, +49,,,2007-09-01, +49,,,2006-06-01, +49,,order,2010-09-01, +49,,order,2009-09-01, +49,,order,2009-08-01, +49,,order,2009-06-01, +49,,order,2008-05-01, +49,,order,2007-09-01, +49,,order,2006-06-01, +49,stopped,,2011-06-01, +49,stopped,,2010-11-01, +49,stopped,,2010-09-01, +49,stopped,,2009-08-01, +49,stopped,,2009-06-01, +49,stopped,,2008-06-01, +49,stopped,,2008-05-01, +49,stopped,,2007-04-01, +49,stopped,,2007-03-01, +49,stopped,,2006-04-01, +49,stopped,,2006-01-01, +49,stopped,,2002-08-01, +49,stopped,,2001-11-01, +49,stopped,order,2011-06-01, +49,stopped,order,2010-11-01, +49,stopped,order,2010-09-01, +49,stopped,order,2009-08-01, +49,stopped,order,2009-06-01, +49,stopped,order,2008-06-01, +49,stopped,order,2008-05-01, +49,stopped,order,2007-04-01, +49,stopped,order,2007-03-01, +49,stopped,order,2006-04-01, +49,stopped,order,2006-01-01, +49,stopped,order,2002-08-01, +49,stopped,order,2001-11-01, +49,active,,2022-12-01, +49,active,order,2022-12-01, 48,,,,Aspirin 81 MG Oral Tablet -48,,,2009-01-01, -48,,,2004-11-01, -48,,,2003-11-01, +48,,,2011-03-01, +48,,,2005-08-01, 48,,order,,Aspirin 81 MG Oral Tablet -48,,order,2009-01-01, -48,,order,2004-11-01, -48,,order,2003-11-01, +48,,order,2011-03-01, +48,,order,2005-08-01, 48,stopped,,,Aspirin 81 MG Oral Tablet -48,stopped,,2012-09-01, -48,stopped,,2012-05-01, -48,stopped,,2011-05-01, -48,stopped,,2011-01-01, -48,stopped,,2009-01-01, -48,stopped,,2008-09-01, -48,stopped,,2004-11-01, -48,stopped,,2003-11-01, +48,stopped,,2009-09-01, +48,stopped,,2007-09-01, +48,stopped,,2006-06-01, +48,stopped,,2005-07-01, 48,stopped,order,,Aspirin 81 MG Oral Tablet -48,stopped,order,2012-09-01, -48,stopped,order,2012-05-01, -48,stopped,order,2011-05-01, -48,stopped,order,2011-01-01, -48,stopped,order,2009-01-01, -48,stopped,order,2008-09-01, -48,stopped,order,2004-11-01, -48,stopped,order,2003-11-01, +48,stopped,order,2009-09-01, +48,stopped,order,2007-09-01, +48,stopped,order,2006-06-01, +48,stopped,order,2005-07-01, 48,active,,,24 HR tacrolimus 1 MG Extended Release Oral Tablet 48,active,order,,24 HR tacrolimus 1 MG Extended Release Oral Tablet -47,,,2013-11-01, -47,,,2012-10-01, -47,,,2010-10-01, -47,,,2010-05-01, -47,,,2002-11-01, -47,,order,2013-11-01, -47,,order,2012-10-01, -47,,order,2010-10-01, -47,,order,2010-05-01, -47,,order,2002-11-01, -47,stopped,,2010-10-01, -47,stopped,,2009-03-01, -47,stopped,,2002-11-01, -47,stopped,order,2010-10-01, -47,stopped,order,2009-03-01, -47,stopped,order,2002-11-01, +47,,,,ferrous sulfate 325 MG Oral Tablet +47,,,,NuvaRing 0.12/0.015 MG per 24HR 21 Day Vaginal System +47,,,2011-07-01, +47,,,2011-04-01, +47,,,2010-04-01, +47,,,2006-05-01, +47,,,2000-11-01, +47,,order,,ferrous sulfate 325 MG Oral Tablet +47,,order,,NuvaRing 0.12/0.015 MG per 24HR 21 Day Vaginal System +47,,order,2011-07-01, +47,,order,2011-04-01, +47,,order,2010-04-01, +47,,order,2006-05-01, +47,,order,2000-11-01, +47,stopped,,2011-04-01, +47,stopped,,2011-03-01, +47,stopped,,2010-04-01, +47,stopped,,2009-10-01, +47,stopped,,2000-11-01, +47,stopped,order,2011-04-01, +47,stopped,order,2011-03-01, +47,stopped,order,2010-04-01, +47,stopped,order,2009-10-01, +47,stopped,order,2000-11-01, +47,active,,,ferrous sulfate 325 MG Oral Tablet +47,active,,2022-08-01, +47,active,order,,ferrous sulfate 325 MG Oral Tablet +47,active,order,2022-08-01, 46,,,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,,,2011-11-01, -46,,,2011-10-01, -46,,,2011-09-01, -46,,,2011-08-01, -46,,,2009-05-01, -46,,,2006-12-01, +46,,,2010-02-01, +46,,,2008-03-01, +46,,,2004-07-01, +46,,,2003-08-01, +46,,,2003-03-01, 46,,order,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,,order,2011-11-01, -46,,order,2011-10-01, -46,,order,2011-09-01, -46,,order,2011-08-01, -46,,order,2009-05-01, -46,,order,2006-12-01, +46,,order,2010-02-01, +46,,order,2008-03-01, +46,,order,2004-07-01, +46,,order,2003-08-01, +46,,order,2003-03-01, 46,stopped,,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,stopped,,2022-04-01, -46,stopped,,2013-11-01, -46,stopped,,2012-10-01, -46,stopped,,2011-11-01, -46,stopped,,2011-09-01, +46,stopped,,2012-02-01, +46,stopped,,2010-02-01, +46,stopped,,2008-03-01, +46,stopped,,2005-08-01, +46,stopped,,2003-08-01, 46,stopped,order,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,stopped,order,2022-04-01, -46,stopped,order,2013-11-01, -46,stopped,order,2012-10-01, -46,stopped,order,2011-11-01, -46,stopped,order,2011-09-01, +46,stopped,order,2012-02-01, +46,stopped,order,2010-02-01, +46,stopped,order,2008-03-01, +46,stopped,order,2005-08-01, +46,stopped,order,2003-08-01, 46,active,,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,active,,2023-02-01, 46,active,order,,Ibuprofen 400 MG Oral Tablet [Ibu] -46,active,order,2023-02-01, -45,,,2013-03-01, -45,,,2012-11-01, -45,,,2009-09-01, -45,,,2008-11-01, -45,,,2005-11-01, -45,,,2000-11-01, -45,,order,2013-03-01, -45,,order,2012-11-01, -45,,order,2009-09-01, -45,,order,2008-11-01, -45,,order,2005-11-01, -45,,order,2000-11-01, -45,stopped,,2022-05-01, -45,stopped,,2012-11-01, -45,stopped,,2011-08-01, -45,stopped,,2010-05-01, -45,stopped,,2009-05-01, -45,stopped,,2006-12-01, -45,stopped,,2005-11-01, -45,stopped,,2000-11-01, -45,stopped,order,2022-05-01, -45,stopped,order,2012-11-01, -45,stopped,order,2011-08-01, -45,stopped,order,2010-05-01, -45,stopped,order,2009-05-01, -45,stopped,order,2006-12-01, -45,stopped,order,2005-11-01, -45,stopped,order,2000-11-01, -44,,,2013-02-01, -44,,,2012-03-01, -44,,,2011-06-01, -44,,,2010-09-01, -44,,,2001-11-01, -44,,order,2013-02-01, -44,,order,2012-03-01, -44,,order,2011-06-01, -44,,order,2010-09-01, -44,,order,2001-11-01, -44,stopped,,2013-03-01, -44,stopped,,2012-03-01, -44,stopped,,2010-09-01, -44,stopped,,2009-09-01, -44,stopped,,2008-11-01, -44,stopped,,2001-11-01, -44,stopped,order,2013-03-01, -44,stopped,order,2012-03-01, -44,stopped,order,2010-09-01, -44,stopped,order,2009-09-01, -44,stopped,order,2008-11-01, -44,stopped,order,2001-11-01, -44,active,,2022-12-01, -44,active,,2022-04-01, -44,active,order,2022-12-01, -44,active,order,2022-04-01, +45,,,2009-11-01, +45,,,2009-02-01, +45,,,2008-07-01, +45,,,2007-11-01, +45,,,2007-05-01, +45,,,2007-01-01, +45,,,2006-07-01, +45,,,2003-10-01, +45,,,2000-10-01, +45,,order,2009-11-01, +45,,order,2009-02-01, +45,,order,2008-07-01, +45,,order,2007-11-01, +45,,order,2007-05-01, +45,,order,2007-01-01, +45,,order,2006-07-01, +45,,order,2003-10-01, +45,,order,2000-10-01, +45,stopped,,2011-07-01, +45,stopped,,2007-11-01, +45,stopped,,2006-07-01, +45,stopped,order,2011-07-01, +45,stopped,order,2007-11-01, +45,stopped,order,2006-07-01, +45,active,,2023-01-01, +45,active,,2022-09-01, +45,active,order,2023-01-01, +45,active,order,2022-09-01, +44,,,,aspirin 81 MG Oral Tablet +44,,,,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +44,,,2010-07-01, +44,,,2010-06-01, +44,,,2008-10-01, +44,,,2007-08-01, +44,,,2006-08-01, +44,,,2004-12-01, +44,,,2002-03-01, +44,,,1997-03-01, +44,,order,,aspirin 81 MG Oral Tablet +44,,order,,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +44,,order,2010-07-01, +44,,order,2010-06-01, +44,,order,2008-10-01, +44,,order,2007-08-01, +44,,order,2006-08-01, +44,,order,2004-12-01, +44,,order,2002-03-01, +44,,order,1997-03-01, +44,stopped,,,NuvaRing 0.12/0.015 MG per 24HR 21 Day Vaginal System +44,stopped,,,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +44,stopped,,2009-11-01, +44,stopped,,2007-05-01, +44,stopped,,2007-01-01, +44,stopped,,2006-08-01, +44,stopped,,2006-05-01, +44,stopped,,2004-07-01, +44,stopped,,2003-10-01, +44,stopped,,2003-03-01, +44,stopped,order,,NuvaRing 0.12/0.015 MG per 24HR 21 Day Vaginal System +44,stopped,order,,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +44,stopped,order,2009-11-01, +44,stopped,order,2007-05-01, +44,stopped,order,2007-01-01, +44,stopped,order,2006-08-01, +44,stopped,order,2006-05-01, +44,stopped,order,2004-07-01, +44,stopped,order,2003-10-01, +44,stopped,order,2003-03-01, +44,active,,,aspirin 81 MG Oral Tablet +44,active,order,,aspirin 81 MG Oral Tablet +43,,,,Phenazopyridine hydrochloride 100 MG Oral Tablet +43,,,,Nitrofurantoin 5 MG/ML Oral Suspension 43,,,2023-03-01,lisinopril 10 MG Oral Tablet -43,,,2012-06-01, -43,,,2011-03-01, -43,,,2009-10-01, -43,,,2009-08-01, -43,,,2007-03-01, -43,,,2006-03-01, -43,,,2002-08-01, -43,,,2000-10-01, +43,,,2009-07-01, +43,,,2008-08-01, +43,,,2008-04-01, +43,,,2007-10-01, +43,,,2007-02-01, +43,,,2005-10-01, +43,,,2005-01-01, +43,,,2004-08-01, +43,,,2003-12-01, +43,,,2003-07-01, +43,,,2003-02-01, +43,,,1998-10-01, +43,,,1997-07-01, +43,,order,,Phenazopyridine hydrochloride 100 MG Oral Tablet +43,,order,,Nitrofurantoin 5 MG/ML Oral Suspension 43,,order,2023-03-01,lisinopril 10 MG Oral Tablet -43,,order,2012-06-01, -43,,order,2011-03-01, -43,,order,2009-10-01, -43,,order,2009-08-01, -43,,order,2007-03-01, -43,,order,2006-03-01, -43,,order,2002-08-01, -43,,order,2000-10-01, -43,stopped,,2013-02-01, -43,stopped,,2012-06-01, -43,stopped,,2011-10-01, -43,stopped,,2011-06-01, -43,stopped,,2009-08-01, -43,stopped,,2006-03-01, -43,stopped,order,2013-02-01, -43,stopped,order,2012-06-01, -43,stopped,order,2011-10-01, -43,stopped,order,2011-06-01, -43,stopped,order,2009-08-01, -43,stopped,order,2006-03-01, +43,,order,2009-07-01, +43,,order,2008-08-01, +43,,order,2008-04-01, +43,,order,2007-10-01, +43,,order,2007-02-01, +43,,order,2005-10-01, +43,,order,2005-01-01, +43,,order,2004-08-01, +43,,order,2003-12-01, +43,,order,2003-07-01, +43,,order,2003-02-01, +43,,order,1998-10-01, +43,,order,1997-07-01, +43,stopped,,,Phenazopyridine hydrochloride 100 MG Oral Tablet +43,stopped,,,Nitrofurantoin 5 MG/ML Oral Suspension +43,stopped,,2010-07-01, +43,stopped,,2009-02-01, +43,stopped,,2008-07-01, +43,stopped,,2008-04-01, +43,stopped,,2007-10-01, +43,stopped,,2004-12-01, +43,stopped,,1998-10-01, +43,stopped,order,,Phenazopyridine hydrochloride 100 MG Oral Tablet +43,stopped,order,,Nitrofurantoin 5 MG/ML Oral Suspension +43,stopped,order,2010-07-01, +43,stopped,order,2009-02-01, +43,stopped,order,2008-07-01, +43,stopped,order,2008-04-01, +43,stopped,order,2007-10-01, +43,stopped,order,2004-12-01, +43,stopped,order,1998-10-01, 42,,,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +42,,,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 42,,,2019-03-01,lisinopril 10 MG Oral Tablet 42,,,2017-01-01,lisinopril 10 MG Oral Tablet -42,,,2012-08-01, 42,,,2009-12-01,lisinopril 10 MG Oral Tablet -42,,,2009-06-01, -42,,,2008-01-01, -42,,,2006-01-01, -42,,,2005-04-01, -42,,,1997-03-01, +42,,,2006-02-01, +42,,,2005-05-01, +42,,,2005-03-01, +42,,,2004-04-01, +42,,,2002-12-01, +42,,,2000-06-01, +42,,,1999-10-01, +42,,,1997-10-01, 42,,order,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +42,,order,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 42,,order,2019-03-01,lisinopril 10 MG Oral Tablet 42,,order,2017-01-01,lisinopril 10 MG Oral Tablet -42,,order,2012-08-01, 42,,order,2009-12-01,lisinopril 10 MG Oral Tablet -42,,order,2009-06-01, -42,,order,2008-01-01, -42,,order,2006-01-01, -42,,order,2005-04-01, -42,,order,1997-03-01, +42,,order,2006-02-01, +42,,order,2005-05-01, +42,,order,2005-03-01, +42,,order,2004-04-01, +42,,order,2002-12-01, +42,,order,2000-06-01, +42,,order,1999-10-01, +42,,order,1997-10-01, 42,stopped,,2019-03-01,lisinopril 10 MG Oral Tablet -42,stopped,,2012-08-01, -42,stopped,,2011-03-01, +42,stopped,,2010-06-01, 42,stopped,,2009-12-01,lisinopril 10 MG Oral Tablet -42,stopped,,2009-06-01, -42,stopped,,2008-01-01, -42,stopped,,2007-03-01, -42,stopped,,2005-04-01, -42,stopped,,2002-08-01, +42,stopped,,2008-10-01, +42,stopped,,2008-08-01, +42,stopped,,2007-08-01, +42,stopped,,2007-02-01, +42,stopped,,2005-10-01, +42,stopped,,2005-03-01, +42,stopped,,2002-03-01, +42,stopped,,2000-10-01, +42,stopped,,2000-06-01, +42,stopped,,1999-10-01, +42,stopped,,1997-07-01, 42,stopped,order,2019-03-01,lisinopril 10 MG Oral Tablet -42,stopped,order,2012-08-01, -42,stopped,order,2011-03-01, +42,stopped,order,2010-06-01, 42,stopped,order,2009-12-01,lisinopril 10 MG Oral Tablet -42,stopped,order,2009-06-01, -42,stopped,order,2008-01-01, -42,stopped,order,2007-03-01, -42,stopped,order,2005-04-01, -42,stopped,order,2002-08-01, +42,stopped,order,2008-10-01, +42,stopped,order,2008-08-01, +42,stopped,order,2007-08-01, +42,stopped,order,2007-02-01, +42,stopped,order,2005-10-01, +42,stopped,order,2005-03-01, +42,stopped,order,2002-03-01, +42,stopped,order,2000-10-01, +42,stopped,order,2000-06-01, +42,stopped,order,1999-10-01, +42,stopped,order,1997-07-01, 42,active,,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +42,active,,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 42,active,,2023-03-01,lisinopril 10 MG Oral Tablet +42,active,,2022-10-01, 42,active,order,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +42,active,order,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 42,active,order,2023-03-01,lisinopril 10 MG Oral Tablet +42,active,order,2022-10-01, 41,,,,Acetaminophen 325 MG Oral Tablet [Tylenol] -41,,,2012-07-01, -41,,,2011-04-01, -41,,,2008-06-01, -41,,,2008-05-01, -41,,,2008-03-01, -41,,,2007-09-01, -41,,,2006-11-01, -41,,,2005-12-01, -41,,,2005-08-01, -41,,,1998-10-01, +41,,,2011-02-01, +41,,,2008-02-01, +41,,,2007-07-01, +41,,,2006-09-01, +41,,,2004-10-01, +41,,,2004-03-01, +41,,,2003-04-01, +41,,,2002-02-01, +41,,,2001-10-01, +41,,,2001-08-01, 41,,order,,Acetaminophen 325 MG Oral Tablet [Tylenol] -41,,order,2012-07-01, -41,,order,2011-04-01, -41,,order,2008-06-01, -41,,order,2008-05-01, -41,,order,2008-03-01, -41,,order,2007-09-01, -41,,order,2006-11-01, -41,,order,2005-12-01, -41,,order,2005-08-01, -41,,order,1998-10-01, +41,,order,2011-02-01, +41,,order,2008-02-01, +41,,order,2007-07-01, +41,,order,2006-09-01, +41,,order,2004-10-01, +41,,order,2004-03-01, +41,,order,2003-04-01, +41,,order,2002-02-01, +41,,order,2001-10-01, +41,,order,2001-08-01, 41,stopped,,,Acetaminophen 325 MG Oral Tablet [Tylenol] +41,stopped,,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 41,stopped,,2017-01-01,lisinopril 10 MG Oral Tablet -41,stopped,,2011-04-01, -41,stopped,,2009-10-01, -41,stopped,,2008-05-01, -41,stopped,,2008-03-01, -41,stopped,,2007-09-01, -41,stopped,,2006-11-01, -41,stopped,,2006-01-01, -41,stopped,,2005-12-01, -41,stopped,,1998-10-01, +41,stopped,,2009-07-01, +41,stopped,,2007-07-01, +41,stopped,,2006-09-01, +41,stopped,,2006-02-01, +41,stopped,,2005-01-01, +41,stopped,,2004-10-01, +41,stopped,,2004-08-01, +41,stopped,,2004-04-01, +41,stopped,,2003-12-01, +41,stopped,,2003-07-01, +41,stopped,,2003-04-01, +41,stopped,,2002-12-01, +41,stopped,,1997-10-01, +41,stopped,,1997-03-01, 41,stopped,order,,Acetaminophen 325 MG Oral Tablet [Tylenol] +41,stopped,order,,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 41,stopped,order,2017-01-01,lisinopril 10 MG Oral Tablet -41,stopped,order,2011-04-01, -41,stopped,order,2009-10-01, -41,stopped,order,2008-05-01, -41,stopped,order,2008-03-01, -41,stopped,order,2007-09-01, -41,stopped,order,2006-11-01, -41,stopped,order,2006-01-01, -41,stopped,order,2005-12-01, -41,stopped,order,1998-10-01, +41,stopped,order,2009-07-01, +41,stopped,order,2007-07-01, +41,stopped,order,2006-09-01, +41,stopped,order,2006-02-01, +41,stopped,order,2005-01-01, +41,stopped,order,2004-10-01, +41,stopped,order,2004-08-01, +41,stopped,order,2004-04-01, +41,stopped,order,2003-12-01, +41,stopped,order,2003-07-01, +41,stopped,order,2003-04-01, +41,stopped,order,2002-12-01, +41,stopped,order,1997-10-01, +41,stopped,order,1997-03-01, 41,active,,,Acetaminophen 325 MG Oral Tablet [Tylenol] 41,active,order,,Acetaminophen 325 MG Oral Tablet [Tylenol] 40,,,2022-03-01,lisinopril 10 MG Oral Tablet 40,,,2019-02-01,lisinopril 10 MG Oral Tablet 40,,,2013-01-01,lisinopril 10 MG Oral Tablet -40,,,2010-11-01, -40,,,2009-02-01, -40,,,2007-06-01, -40,,,2007-04-01, -40,,,2006-04-01, -40,,,2005-07-01, -40,,,1999-10-01, -40,,,1997-07-01, +40,,,2004-02-01, +40,,,2003-05-01, +40,,,2001-03-01, +40,,,1998-03-01, +40,,,1997-02-01, +40,,,1995-10-01, 40,,order,2022-03-01,lisinopril 10 MG Oral Tablet 40,,order,2019-02-01,lisinopril 10 MG Oral Tablet 40,,order,2013-01-01,lisinopril 10 MG Oral Tablet -40,,order,2010-11-01, -40,,order,2009-02-01, -40,,order,2007-06-01, -40,,order,2007-04-01, -40,,order,2006-04-01, -40,,order,2005-07-01, -40,,order,1999-10-01, -40,,order,1997-07-01, +40,,order,2004-02-01, +40,,order,2003-05-01, +40,,order,2001-03-01, +40,,order,1998-03-01, +40,,order,1997-02-01, +40,,order,1995-10-01, 40,stopped,,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] -40,stopped,,2022-11-01, -40,stopped,,2022-10-01, 40,stopped,,2019-02-01,lisinopril 10 MG Oral Tablet 40,stopped,,2013-01-01,lisinopril 10 MG Oral Tablet -40,stopped,,2012-07-01, -40,stopped,,2007-04-01, -40,stopped,,2006-04-01, -40,stopped,,2005-07-01, -40,stopped,,2000-10-01, -40,stopped,,1999-10-01, +40,stopped,,2008-02-01, +40,stopped,,2004-03-01, +40,stopped,,2003-05-01, +40,stopped,,2003-02-01, +40,stopped,,2002-02-01, 40,stopped,order,,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] -40,stopped,order,2022-11-01, -40,stopped,order,2022-10-01, 40,stopped,order,2019-02-01,lisinopril 10 MG Oral Tablet 40,stopped,order,2013-01-01,lisinopril 10 MG Oral Tablet -40,stopped,order,2012-07-01, -40,stopped,order,2007-04-01, -40,stopped,order,2006-04-01, -40,stopped,order,2005-07-01, -40,stopped,order,2000-10-01, -40,stopped,order,1999-10-01, +40,stopped,order,2008-02-01, +40,stopped,order,2004-03-01, +40,stopped,order,2003-05-01, +40,stopped,order,2003-02-01, +40,stopped,order,2002-02-01, +39,,,,prasugrel 10 MG Oral Tablet +39,,,,Alendronic acid 10 MG Oral Tablet +39,,,,1 ML tacrolimus 5 MG/ML Injection 39,,,2021-03-01,lisinopril 10 MG Oral Tablet 39,,,2020-02-01,lisinopril 10 MG Oral Tablet 39,,,2016-01-01,lisinopril 10 MG Oral Tablet 39,,,2015-01-01,lisinopril 10 MG Oral Tablet -39,,,2012-02-01, -39,,,2010-04-01, 39,,,2007-12-01,lisinopril 10 MG Oral Tablet -39,,,2002-03-01, +39,,,2004-05-01, +39,,,2002-07-01, +39,,,2000-07-01, +39,,,2000-03-01, +39,,,1993-09-01, +39,,order,,prasugrel 10 MG Oral Tablet +39,,order,,Alendronic acid 10 MG Oral Tablet +39,,order,,1 ML tacrolimus 5 MG/ML Injection 39,,order,2021-03-01,lisinopril 10 MG Oral Tablet 39,,order,2020-02-01,lisinopril 10 MG Oral Tablet 39,,order,2016-01-01,lisinopril 10 MG Oral Tablet 39,,order,2015-01-01,lisinopril 10 MG Oral Tablet -39,,order,2012-02-01, -39,,order,2010-04-01, 39,,order,2007-12-01,lisinopril 10 MG Oral Tablet -39,,order,2002-03-01, +39,,order,2004-05-01, +39,,order,2002-07-01, +39,,order,2000-07-01, +39,,order,2000-03-01, +39,,order,1993-09-01, +39,stopped,,,1 ML tacrolimus 5 MG/ML Injection 39,stopped,,2021-03-01,lisinopril 10 MG Oral Tablet 39,stopped,,2020-02-01,lisinopril 10 MG Oral Tablet 39,stopped,,2016-01-01,lisinopril 10 MG Oral Tablet 39,stopped,,2015-01-01,lisinopril 10 MG Oral Tablet -39,stopped,,2012-02-01, -39,stopped,,2010-11-01, -39,stopped,,2010-04-01, -39,stopped,,2008-06-01, +39,stopped,,2011-02-01, 39,stopped,,2007-12-01,lisinopril 10 MG Oral Tablet -39,stopped,,2007-06-01, -39,stopped,,2005-08-01, -39,stopped,,1997-07-01, -39,stopped,,1997-03-01, +39,stopped,,2004-05-01, +39,stopped,,2004-02-01, +39,stopped,,2002-07-01, +39,stopped,,2001-10-01, +39,stopped,,2001-08-01, +39,stopped,,2001-03-01, +39,stopped,,1998-03-01, +39,stopped,,1995-10-01, +39,stopped,order,,1 ML tacrolimus 5 MG/ML Injection 39,stopped,order,2021-03-01,lisinopril 10 MG Oral Tablet 39,stopped,order,2020-02-01,lisinopril 10 MG Oral Tablet 39,stopped,order,2016-01-01,lisinopril 10 MG Oral Tablet 39,stopped,order,2015-01-01,lisinopril 10 MG Oral Tablet -39,stopped,order,2012-02-01, -39,stopped,order,2010-11-01, -39,stopped,order,2010-04-01, -39,stopped,order,2008-06-01, +39,stopped,order,2011-02-01, 39,stopped,order,2007-12-01,lisinopril 10 MG Oral Tablet -39,stopped,order,2007-06-01, -39,stopped,order,2005-08-01, -39,stopped,order,1997-07-01, -39,stopped,order,1997-03-01, +39,stopped,order,2004-05-01, +39,stopped,order,2004-02-01, +39,stopped,order,2002-07-01, +39,stopped,order,2001-10-01, +39,stopped,order,2001-08-01, +39,stopped,order,2001-03-01, +39,stopped,order,1998-03-01, +39,stopped,order,1995-10-01, +39,active,,,Alendronic acid 10 MG Oral Tablet +39,active,,2022-07-01, +39,active,order,,Alendronic acid 10 MG Oral Tablet +39,active,order,2022-07-01, 38,,,2020-03-01,lisinopril 10 MG Oral Tablet 38,,,2018-03-01,lisinopril 10 MG Oral Tablet -38,,,2009-11-01, -38,,,2008-04-01, -38,,,2006-06-01, -38,,,2003-08-01, -38,,,2001-03-01, -38,,,1997-10-01, +38,,,2006-10-01, +38,,,2005-06-01, +38,,,2002-10-01, +38,,,2002-04-01, +38,,,2001-12-01, +38,,,1988-06-01, 38,,order,2020-03-01,lisinopril 10 MG Oral Tablet 38,,order,2018-03-01,lisinopril 10 MG Oral Tablet -38,,order,2009-11-01, -38,,order,2008-04-01, -38,,order,2006-06-01, -38,,order,2003-08-01, -38,,order,2001-03-01, -38,,order,1997-10-01, +38,,order,2006-10-01, +38,,order,2005-06-01, +38,,order,2002-10-01, +38,,order,2002-04-01, +38,,order,2001-12-01, +38,,order,1988-06-01, +38,stopped,,,Alendronic acid 10 MG Oral Tablet 38,stopped,,2020-03-01,lisinopril 10 MG Oral Tablet -38,stopped,,2009-02-01, -38,stopped,,2008-04-01, -38,stopped,,2003-08-01, -38,stopped,,2002-03-01, +38,stopped,,2006-10-01, +38,stopped,,2005-06-01, +38,stopped,,2005-05-01, +38,stopped,order,,Alendronic acid 10 MG Oral Tablet 38,stopped,order,2020-03-01,lisinopril 10 MG Oral Tablet -38,stopped,order,2009-02-01, -38,stopped,order,2008-04-01, -38,stopped,order,2003-08-01, -38,stopped,order,2002-03-01, -38,active,,2023-01-01, -38,active,,2022-09-01, -38,active,,2022-08-01, -38,active,order,2023-01-01, -38,active,order,2022-09-01, -38,active,order,2022-08-01, +38,stopped,order,2006-10-01, +38,stopped,order,2005-06-01, +38,stopped,order,2005-05-01, +38,active,,2022-11-01, +38,active,,2022-06-01, +38,active,order,2022-11-01, +38,active,order,2022-06-01, 37,,,,albuterol 5 MG/ML Inhalation Solution +37,,,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler 37,,,2021-02-01,lisinopril 10 MG Oral Tablet 37,,,2021-02-01,amLODIPine 2.5 MG Oral Tablet 37,,,2020-03-01,amLODIPine 2.5 MG Oral Tablet -37,,,2011-07-01, -37,,,2010-06-01, -37,,,2010-02-01, -37,,,2003-03-01, -37,,,2003-02-01, -37,,,2002-12-01, -37,,,2002-02-01, -37,,,2000-07-01, -37,,,2000-06-01, -37,,,2000-03-01, +37,,,2005-02-01, +37,,,2001-06-01, +37,,,2001-04-01, +37,,,1998-07-01, +37,,,1997-06-01, +37,,,1996-03-01, 37,,order,,albuterol 5 MG/ML Inhalation Solution +37,,order,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler 37,,order,2021-02-01,lisinopril 10 MG Oral Tablet 37,,order,2021-02-01,amLODIPine 2.5 MG Oral Tablet 37,,order,2020-03-01,amLODIPine 2.5 MG Oral Tablet -37,,order,2011-07-01, -37,,order,2010-06-01, -37,,order,2010-02-01, -37,,order,2003-03-01, -37,,order,2003-02-01, -37,,order,2002-12-01, -37,,order,2002-02-01, -37,,order,2000-07-01, -37,,order,2000-06-01, -37,,order,2000-03-01, +37,,order,2005-02-01, +37,,order,2001-06-01, +37,,order,2001-04-01, +37,,order,1998-07-01, +37,,order,1997-06-01, +37,,order,1996-03-01, 37,stopped,,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 37,stopped,,2021-02-01,lisinopril 10 MG Oral Tablet 37,stopped,,2021-02-01,amLODIPine 2.5 MG Oral Tablet 37,stopped,,2020-03-01,amLODIPine 2.5 MG Oral Tablet 37,stopped,,2018-03-01,lisinopril 10 MG Oral Tablet -37,stopped,,2010-02-01, -37,stopped,,2009-11-01, -37,stopped,,2006-06-01, -37,stopped,,2001-03-01, -37,stopped,,2000-06-01, +37,stopped,,2002-04-01, +37,stopped,,2000-07-01, 37,stopped,,2000-03-01, -37,stopped,,1997-10-01, +37,stopped,,1997-02-01, +37,stopped,,1996-03-01, 37,stopped,order,,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 37,stopped,order,2021-02-01,lisinopril 10 MG Oral Tablet 37,stopped,order,2021-02-01,amLODIPine 2.5 MG Oral Tablet 37,stopped,order,2020-03-01,amLODIPine 2.5 MG Oral Tablet 37,stopped,order,2018-03-01,lisinopril 10 MG Oral Tablet -37,stopped,order,2010-02-01, -37,stopped,order,2009-11-01, -37,stopped,order,2006-06-01, -37,stopped,order,2001-03-01, -37,stopped,order,2000-06-01, +37,stopped,order,2002-04-01, +37,stopped,order,2000-07-01, 37,stopped,order,2000-03-01, -37,stopped,order,1997-10-01, +37,stopped,order,1997-02-01, +37,stopped,order,1996-03-01, +37,active,,,prasugrel 10 MG Oral Tablet 37,active,,,albuterol 5 MG/ML Inhalation Solution +37,active,,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler +37,active,order,,prasugrel 10 MG Oral Tablet 37,active,order,,albuterol 5 MG/ML Inhalation Solution +37,active,order,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler +36,,,,Rocuronium bromide 10 MG/ML Injectable Solution +36,,,,Midazolam 1 MG/ML Injectable Solution 36,,,,Fexofenadine hydrochloride 30 MG Oral Tablet 36,,,,Cefuroxime 250 MG Oral Tablet +36,,,,2 ML Ondansetron 2 MG/ML Injection +36,,,,100 ML Propofol 10 MG/ML Injection +36,,,2020-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 36,,,2019-01-01,lisinopril 10 MG Oral Tablet 36,,,2015-03-01,lisinopril 10 MG Oral Tablet 36,,,2014-05-01,lisinopril 10 MG Oral Tablet 36,,,2014-01-01,lisinopril 10 MG Oral Tablet -36,,,2009-07-01, -36,,,2007-05-01, -36,,,2007-01-01, -36,,,2004-07-01, -36,,,2001-08-01, -36,,,1998-03-01, -36,,,1997-02-01, -36,,,1993-09-01, +36,,,2005-09-01, +36,,,2004-09-01, +36,,,2004-01-01, +36,,,2000-09-01, +36,,,1999-09-01, +36,,,1999-06-01, +36,,,1997-08-01, +36,,,1991-06-01, +36,,,1990-06-01, +36,,order,,Rocuronium bromide 10 MG/ML Injectable Solution +36,,order,,Midazolam 1 MG/ML Injectable Solution 36,,order,,Fexofenadine hydrochloride 30 MG Oral Tablet 36,,order,,Cefuroxime 250 MG Oral Tablet +36,,order,,2 ML Ondansetron 2 MG/ML Injection +36,,order,,100 ML Propofol 10 MG/ML Injection +36,,order,2020-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 36,,order,2019-01-01,lisinopril 10 MG Oral Tablet 36,,order,2015-03-01,lisinopril 10 MG Oral Tablet 36,,order,2014-05-01,lisinopril 10 MG Oral Tablet 36,,order,2014-01-01,lisinopril 10 MG Oral Tablet -36,,order,2009-07-01, -36,,order,2007-05-01, -36,,order,2007-01-01, -36,,order,2004-07-01, -36,,order,2001-08-01, -36,,order,1998-03-01, -36,,order,1997-02-01, -36,,order,1993-09-01, -36,stopped,,2022-12-01, +36,,order,2005-09-01, +36,,order,2004-09-01, +36,,order,2004-01-01, +36,,order,2000-09-01, +36,,order,1999-09-01, +36,,order,1999-06-01, +36,,order,1997-08-01, +36,,order,1991-06-01, +36,,order,1990-06-01, +36,stopped,,,Rocuronium bromide 10 MG/ML Injectable Solution +36,stopped,,,Midazolam 1 MG/ML Injectable Solution +36,stopped,,,2 ML Ondansetron 2 MG/ML Injection +36,stopped,,,100 ML Propofol 10 MG/ML Injection 36,stopped,,2022-03-01,lisinopril 10 MG Oral Tablet +36,stopped,,2020-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 36,stopped,,2015-03-01,lisinopril 10 MG Oral Tablet 36,stopped,,2014-05-01,lisinopril 10 MG Oral Tablet 36,stopped,,2014-01-01,lisinopril 10 MG Oral Tablet -36,stopped,,2010-06-01, -36,stopped,,2002-12-01, -36,stopped,,2002-02-01, -36,stopped,order,2022-12-01, +36,stopped,,2005-09-01, +36,stopped,,2005-02-01, +36,stopped,,2004-09-01, +36,stopped,,2004-01-01, +36,stopped,,2002-10-01, +36,stopped,,2001-12-01, +36,stopped,,2001-06-01, +36,stopped,,2001-04-01, +36,stopped,,2000-09-01, +36,stopped,,1999-09-01, +36,stopped,,1998-07-01, +36,stopped,,1997-08-01, +36,stopped,,1990-06-01, +36,stopped,,1988-06-01, +36,stopped,order,,Rocuronium bromide 10 MG/ML Injectable Solution +36,stopped,order,,Midazolam 1 MG/ML Injectable Solution +36,stopped,order,,2 ML Ondansetron 2 MG/ML Injection +36,stopped,order,,100 ML Propofol 10 MG/ML Injection 36,stopped,order,2022-03-01,lisinopril 10 MG Oral Tablet +36,stopped,order,2020-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 36,stopped,order,2015-03-01,lisinopril 10 MG Oral Tablet 36,stopped,order,2014-05-01,lisinopril 10 MG Oral Tablet 36,stopped,order,2014-01-01,lisinopril 10 MG Oral Tablet -36,stopped,order,2010-06-01, -36,stopped,order,2002-12-01, -36,stopped,order,2002-02-01, +36,stopped,order,2005-09-01, +36,stopped,order,2005-02-01, +36,stopped,order,2004-09-01, +36,stopped,order,2004-01-01, +36,stopped,order,2002-10-01, +36,stopped,order,2001-12-01, +36,stopped,order,2001-06-01, +36,stopped,order,2001-04-01, +36,stopped,order,2000-09-01, +36,stopped,order,1999-09-01, +36,stopped,order,1998-07-01, +36,stopped,order,1997-08-01, +36,stopped,order,1990-06-01, +36,stopped,order,1988-06-01, 36,active,,,Fexofenadine hydrochloride 30 MG Oral Tablet -36,active,,2022-10-01, +36,active,,2022-05-01, 36,active,order,,Fexofenadine hydrochloride 30 MG Oral Tablet -36,active,order,2022-10-01, +36,active,order,2022-05-01, +35,,,,cefazolin 2000 MG Injection +35,,,2023-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,,,2023-03-01,amLODIPine 2.5 MG Oral Tablet 35,,,2022-03-01,amLODIPine 2.5 MG Oral Tablet 35,,,2021-10-01,amLODIPine 2.5 MG Oral Tablet +35,,,2021-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,,,2020-02-01,amLODIPine 2.5 MG Oral Tablet 35,,,2018-01-01,lisinopril 10 MG Oral Tablet 35,,,2011-12-01,lisinopril 10 MG Oral Tablet 35,,,2010-12-01,lisinopril 10 MG Oral Tablet -35,,,2007-11-01, -35,,,2007-10-01, -35,,,2006-08-01, -35,,,2006-05-01, -35,,,2004-12-01, -35,,,2004-04-01, -35,,,2003-10-01, -35,,,2003-04-01, -35,,,2001-12-01, -35,,,2001-06-01, -35,,,1999-09-01, -35,,,1995-10-01, +35,,,2002-06-01, +35,,,2002-05-01, +35,,,2001-01-01, +35,,,2000-08-01, +35,,,1998-11-01, +35,,,1998-06-01, +35,,,1997-11-01, +35,,,1997-05-01, +35,,,1996-10-01, +35,,,1995-05-01, +35,,,1995-01-01, +35,,,1994-05-01, +35,,order,,cefazolin 2000 MG Injection +35,,order,2023-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,,order,2023-03-01,amLODIPine 2.5 MG Oral Tablet 35,,order,2022-03-01,amLODIPine 2.5 MG Oral Tablet 35,,order,2021-10-01,amLODIPine 2.5 MG Oral Tablet +35,,order,2021-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,,order,2020-02-01,amLODIPine 2.5 MG Oral Tablet 35,,order,2018-01-01,lisinopril 10 MG Oral Tablet 35,,order,2011-12-01,lisinopril 10 MG Oral Tablet 35,,order,2010-12-01,lisinopril 10 MG Oral Tablet -35,,order,2007-11-01, -35,,order,2007-10-01, -35,,order,2006-08-01, -35,,order,2006-05-01, -35,,order,2004-12-01, -35,,order,2004-04-01, -35,,order,2003-10-01, -35,,order,2003-04-01, -35,,order,2001-12-01, -35,,order,2001-06-01, -35,,order,1999-09-01, -35,,order,1995-10-01, +35,,order,2002-06-01, +35,,order,2002-05-01, +35,,order,2001-01-01, +35,,order,2000-08-01, +35,,order,1998-11-01, +35,,order,1998-06-01, +35,,order,1997-11-01, +35,,order,1997-05-01, +35,,order,1996-10-01, +35,,order,1995-05-01, +35,,order,1995-01-01, +35,,order,1994-05-01, +35,stopped,,,cefazolin 2000 MG Injection 35,stopped,,,albuterol 5 MG/ML Inhalation Solution 35,stopped,,,Cefuroxime 250 MG Oral Tablet -35,stopped,,2022-09-01, -35,stopped,,2022-08-01, +35,stopped,,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler 35,stopped,,2021-10-01,amLODIPine 2.5 MG Oral Tablet +35,stopped,,2021-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,stopped,,2020-02-01,amLODIPine 2.5 MG Oral Tablet 35,stopped,,2019-01-01,lisinopril 10 MG Oral Tablet 35,stopped,,2018-01-01,lisinopril 10 MG Oral Tablet 35,stopped,,2011-12-01,lisinopril 10 MG Oral Tablet -35,stopped,,2011-07-01, 35,stopped,,2010-12-01,lisinopril 10 MG Oral Tablet -35,stopped,,2009-07-01, -35,stopped,,2007-11-01, -35,stopped,,2007-10-01, -35,stopped,,2007-05-01, -35,stopped,,2007-01-01, -35,stopped,,2006-08-01, -35,stopped,,2004-07-01, -35,stopped,,2004-04-01, -35,stopped,,2003-10-01, -35,stopped,,2003-04-01, -35,stopped,,2003-03-01, -35,stopped,,2003-02-01, -35,stopped,,2001-08-01, -35,stopped,,2000-07-01, -35,stopped,,1999-09-01, -35,stopped,,1998-03-01, +35,stopped,,2002-06-01, +35,stopped,,2000-08-01, +35,stopped,,1997-06-01, +35,stopped,,1997-05-01, +35,stopped,,1993-09-01, +35,stopped,order,,cefazolin 2000 MG Injection 35,stopped,order,,albuterol 5 MG/ML Inhalation Solution 35,stopped,order,,Cefuroxime 250 MG Oral Tablet -35,stopped,order,2022-09-01, -35,stopped,order,2022-08-01, +35,stopped,order,,60 ACTUAT Fluticasone propionate 0.25 MG/ACTUAT / salmeterol 0.05 MG/ACTUAT Dry Powder Inhaler 35,stopped,order,2021-10-01,amLODIPine 2.5 MG Oral Tablet +35,stopped,order,2021-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 35,stopped,order,2020-02-01,amLODIPine 2.5 MG Oral Tablet 35,stopped,order,2019-01-01,lisinopril 10 MG Oral Tablet 35,stopped,order,2018-01-01,lisinopril 10 MG Oral Tablet 35,stopped,order,2011-12-01,lisinopril 10 MG Oral Tablet -35,stopped,order,2011-07-01, 35,stopped,order,2010-12-01,lisinopril 10 MG Oral Tablet -35,stopped,order,2009-07-01, -35,stopped,order,2007-11-01, -35,stopped,order,2007-10-01, -35,stopped,order,2007-05-01, -35,stopped,order,2007-01-01, -35,stopped,order,2006-08-01, -35,stopped,order,2004-07-01, -35,stopped,order,2004-04-01, -35,stopped,order,2003-10-01, -35,stopped,order,2003-04-01, -35,stopped,order,2003-03-01, -35,stopped,order,2003-02-01, -35,stopped,order,2001-08-01, -35,stopped,order,2000-07-01, -35,stopped,order,1999-09-01, -35,stopped,order,1998-03-01, +35,stopped,order,2002-06-01, +35,stopped,order,2000-08-01, +35,stopped,order,1997-06-01, +35,stopped,order,1997-05-01, +35,stopped,order,1993-09-01, 34,,,,diphenhydrAMINE Hydrochloride 25 MG Oral Tablet +34,,,,25 ML protamine sulfate (USP) 10 MG/ML Injection +34,,,,"1 ML heparin sodium, porcine 5000 UNT/ML Injection" 34,,,2022-04-01,lisinopril 10 MG Oral Tablet 34,,,2022-02-01,lisinopril 10 MG Oral Tablet 34,,,2021-09-01,amLODIPine 2.5 MG Oral Tablet 34,,,2021-07-01,Hydrochlorothiazide 25 MG Oral Tablet 34,,,2021-06-01,lisinopril 10 MG Oral Tablet +34,,,2021-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,,,2021-04-01,amLODIPine 2.5 MG Oral Tablet 34,,,2019-08-01,lisinopril 10 MG Oral Tablet 34,,,2019-08-01,amLODIPine 2.5 MG Oral Tablet 34,,,2019-03-01,amLODIPine 2.5 MG Oral Tablet +34,,,2019-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,,,2019-02-01,amLODIPine 2.5 MG Oral Tablet 34,,,2018-08-01,lisinopril 10 MG Oral Tablet 34,,,2018-02-01,lisinopril 10 MG Oral Tablet 34,,,2017-03-01,lisinopril 10 MG Oral Tablet 34,,,2017-02-01,lisinopril 10 MG Oral Tablet 34,,,2016-09-01,amLODIPine 2.5 MG Oral Tablet -34,,,2011-02-01, 34,,,2008-12-01,lisinopril 10 MG Oral Tablet -34,,,2008-08-01, -34,,,2008-07-01, -34,,,2007-08-01, -34,,,2006-07-01, -34,,,2005-10-01, -34,,,2004-08-01, -34,,,2004-02-01, -34,,,2003-12-01, -34,,,2003-07-01, -34,,,2002-07-01, -34,,,2001-04-01, -34,,,1998-06-01, -34,,,1997-06-01, -34,,,1995-01-01, +34,,,2002-01-01, +34,,,1999-03-01, +34,,,1996-02-01, +34,,,1996-01-01, +34,,,1994-07-01, +34,,,1991-03-01, +34,,,1990-01-01, 34,,order,,diphenhydrAMINE Hydrochloride 25 MG Oral Tablet +34,,order,,25 ML protamine sulfate (USP) 10 MG/ML Injection +34,,order,,"1 ML heparin sodium, porcine 5000 UNT/ML Injection" 34,,order,2022-04-01,lisinopril 10 MG Oral Tablet 34,,order,2022-02-01,lisinopril 10 MG Oral Tablet 34,,order,2021-09-01,amLODIPine 2.5 MG Oral Tablet 34,,order,2021-07-01,Hydrochlorothiazide 25 MG Oral Tablet 34,,order,2021-06-01,lisinopril 10 MG Oral Tablet +34,,order,2021-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,,order,2021-04-01,amLODIPine 2.5 MG Oral Tablet 34,,order,2019-08-01,lisinopril 10 MG Oral Tablet 34,,order,2019-08-01,amLODIPine 2.5 MG Oral Tablet 34,,order,2019-03-01,amLODIPine 2.5 MG Oral Tablet +34,,order,2019-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,,order,2019-02-01,amLODIPine 2.5 MG Oral Tablet 34,,order,2018-08-01,lisinopril 10 MG Oral Tablet 34,,order,2018-02-01,lisinopril 10 MG Oral Tablet 34,,order,2017-03-01,lisinopril 10 MG Oral Tablet 34,,order,2017-02-01,lisinopril 10 MG Oral Tablet 34,,order,2016-09-01,amLODIPine 2.5 MG Oral Tablet -34,,order,2011-02-01, 34,,order,2008-12-01,lisinopril 10 MG Oral Tablet -34,,order,2008-08-01, -34,,order,2008-07-01, -34,,order,2007-08-01, -34,,order,2006-07-01, -34,,order,2005-10-01, -34,,order,2004-08-01, -34,,order,2004-02-01, -34,,order,2003-12-01, -34,,order,2003-07-01, -34,,order,2002-07-01, -34,,order,2001-04-01, -34,,order,1998-06-01, -34,,order,1997-06-01, -34,,order,1995-01-01, +34,,order,2002-01-01, +34,,order,1999-03-01, +34,,order,1996-02-01, +34,,order,1996-01-01, +34,,order,1994-07-01, +34,,order,1991-03-01, +34,,order,1990-01-01, +34,stopped,,,25 ML protamine sulfate (USP) 10 MG/ML Injection +34,stopped,,,"1 ML heparin sodium, porcine 5000 UNT/ML Injection" 34,stopped,,2022-02-01,lisinopril 10 MG Oral Tablet 34,stopped,,2021-09-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,,2021-07-01,Hydrochlorothiazide 25 MG Oral Tablet 34,stopped,,2021-06-01,lisinopril 10 MG Oral Tablet +34,stopped,,2021-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,stopped,,2021-04-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,,2019-03-01,amLODIPine 2.5 MG Oral Tablet +34,stopped,,2019-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,stopped,,2019-02-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,,2018-08-01,lisinopril 10 MG Oral Tablet 34,stopped,,2017-03-01,lisinopril 10 MG Oral Tablet 34,stopped,,2017-02-01,lisinopril 10 MG Oral Tablet 34,stopped,,2016-09-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,,2008-12-01,lisinopril 10 MG Oral Tablet -34,stopped,,2006-07-01, -34,stopped,,2006-05-01, -34,stopped,,2004-12-01, -34,stopped,,2003-07-01, -34,stopped,,2002-07-01, -34,stopped,,2001-06-01, -34,stopped,,1997-06-01, -34,stopped,,1997-02-01, -34,stopped,,1995-10-01, -34,stopped,,1993-09-01, +34,stopped,,2002-01-01, +34,stopped,,1999-06-01, +34,stopped,,1999-03-01, +34,stopped,,1998-11-01, +34,stopped,,1998-06-01, +34,stopped,,1997-11-01, +34,stopped,,1996-10-01, +34,stopped,,1996-02-01, +34,stopped,,1996-01-01, +34,stopped,,1995-05-01, +34,stopped,,1995-01-01, +34,stopped,,1994-07-01, +34,stopped,,1994-05-01, +34,stopped,,1991-06-01, +34,stopped,order,,25 ML protamine sulfate (USP) 10 MG/ML Injection +34,stopped,order,,"1 ML heparin sodium, porcine 5000 UNT/ML Injection" 34,stopped,order,2022-02-01,lisinopril 10 MG Oral Tablet 34,stopped,order,2021-09-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,order,2021-07-01,Hydrochlorothiazide 25 MG Oral Tablet 34,stopped,order,2021-06-01,lisinopril 10 MG Oral Tablet +34,stopped,order,2021-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,stopped,order,2021-04-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,order,2019-03-01,amLODIPine 2.5 MG Oral Tablet +34,stopped,order,2019-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 34,stopped,order,2019-02-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,order,2018-08-01,lisinopril 10 MG Oral Tablet 34,stopped,order,2017-03-01,lisinopril 10 MG Oral Tablet 34,stopped,order,2017-02-01,lisinopril 10 MG Oral Tablet 34,stopped,order,2016-09-01,amLODIPine 2.5 MG Oral Tablet 34,stopped,order,2008-12-01,lisinopril 10 MG Oral Tablet -34,stopped,order,2006-07-01, -34,stopped,order,2006-05-01, -34,stopped,order,2004-12-01, -34,stopped,order,2003-07-01, -34,stopped,order,2002-07-01, -34,stopped,order,2001-06-01, -34,stopped,order,1997-06-01, -34,stopped,order,1997-02-01, -34,stopped,order,1995-10-01, -34,stopped,order,1993-09-01, +34,stopped,order,2002-01-01, +34,stopped,order,1999-06-01, +34,stopped,order,1999-03-01, +34,stopped,order,1998-11-01, +34,stopped,order,1998-06-01, +34,stopped,order,1997-11-01, +34,stopped,order,1996-10-01, +34,stopped,order,1996-02-01, +34,stopped,order,1996-01-01, +34,stopped,order,1995-05-01, +34,stopped,order,1995-01-01, +34,stopped,order,1994-07-01, +34,stopped,order,1994-05-01, +34,stopped,order,1991-06-01, 34,active,,,diphenhydrAMINE Hydrochloride 25 MG Oral Tablet 34,active,order,,diphenhydrAMINE Hydrochloride 25 MG Oral Tablet +33,,,,Mirena 52 MG Intrauterine System +33,,,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,,2021-12-01,lisinopril 10 MG Oral Tablet +33,,,2021-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,,2021-04-01,lisinopril 10 MG Oral Tablet 33,,,2021-03-01,amLODIPine 2.5 MG Oral Tablet 33,,,2020-03-01,Hydrochlorothiazide 25 MG Oral Tablet +33,,,2020-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,,2018-10-01,lisinopril 10 MG Oral Tablet 33,,,2016-09-01,lisinopril 10 MG Oral Tablet 33,,,2015-04-01,lisinopril 10 MG Oral Tablet 33,,,2014-12-01,lisinopril 10 MG Oral Tablet 33,,,2012-04-01,lisinopril 10 MG Oral Tablet -33,,,2010-07-01, -33,,,2008-10-01, -33,,,2007-02-01, -33,,,2005-01-01, -33,,,2004-10-01, -33,,,2004-03-01, -33,,,2003-05-01, -33,,,2002-04-01, -33,,,2001-10-01, -33,,,2000-08-01, -33,,,1999-06-01, -33,,,1996-03-01, -33,,,1995-05-01, -33,,,1994-05-01, -33,,,1988-06-01, +33,,,2004-06-01, +33,,,2003-09-01, +33,,,2002-09-01, +33,,,2001-09-01, +33,,,2001-05-01, +33,,,2000-02-01, +33,,,1998-12-01, +33,,,1998-02-01, +33,,,1997-01-01, +33,,,1996-09-01, +33,,,1996-08-01, +33,,,1996-07-01, +33,,,1995-07-01, +33,,,1994-06-01, +33,,,1991-02-01, +33,,order,,Mirena 52 MG Intrauterine System +33,,order,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,order,2021-12-01,lisinopril 10 MG Oral Tablet +33,,order,2021-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,order,2021-04-01,lisinopril 10 MG Oral Tablet 33,,order,2021-03-01,amLODIPine 2.5 MG Oral Tablet 33,,order,2020-03-01,Hydrochlorothiazide 25 MG Oral Tablet +33,,order,2020-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,,order,2018-10-01,lisinopril 10 MG Oral Tablet 33,,order,2016-09-01,lisinopril 10 MG Oral Tablet 33,,order,2015-04-01,lisinopril 10 MG Oral Tablet 33,,order,2014-12-01,lisinopril 10 MG Oral Tablet 33,,order,2012-04-01,lisinopril 10 MG Oral Tablet -33,,order,2010-07-01, -33,,order,2008-10-01, -33,,order,2007-02-01, -33,,order,2005-01-01, -33,,order,2004-10-01, -33,,order,2004-03-01, -33,,order,2003-05-01, -33,,order,2002-04-01, -33,,order,2001-10-01, -33,,order,2000-08-01, -33,,order,1999-06-01, -33,,order,1996-03-01, -33,,order,1995-05-01, -33,,order,1994-05-01, -33,,order,1988-06-01, +33,,order,2004-06-01, +33,,order,2003-09-01, +33,,order,2002-09-01, +33,,order,2001-09-01, +33,,order,2001-05-01, +33,,order,2000-02-01, +33,,order,1998-12-01, +33,,order,1998-02-01, +33,,order,1997-01-01, +33,,order,1996-09-01, +33,,order,1996-08-01, +33,,order,1996-07-01, +33,,order,1995-07-01, +33,,order,1994-06-01, +33,,order,1991-02-01, +33,stopped,,,Mirena 52 MG Intrauterine System 33,stopped,,2022-03-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,,2021-12-01,lisinopril 10 MG Oral Tablet +33,stopped,,2021-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,stopped,,2021-04-01,lisinopril 10 MG Oral Tablet 33,stopped,,2021-03-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,,2020-03-01,Hydrochlorothiazide 25 MG Oral Tablet +33,stopped,,2020-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,stopped,,2019-08-01,lisinopril 10 MG Oral Tablet 33,stopped,,2019-08-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,,2018-10-01,lisinopril 10 MG Oral Tablet @@ -1316,30 +1727,23 @@ cnt,status,intent,authoredon_month,medication_display 33,stopped,,2015-04-01,lisinopril 10 MG Oral Tablet 33,stopped,,2014-12-01,lisinopril 10 MG Oral Tablet 33,stopped,,2012-04-01,lisinopril 10 MG Oral Tablet -33,stopped,,2011-02-01, -33,stopped,,2008-10-01, -33,stopped,,2008-08-01, -33,stopped,,2008-07-01, -33,stopped,,2007-08-01, -33,stopped,,2005-10-01, -33,stopped,,2004-10-01, -33,stopped,,2004-08-01, -33,stopped,,2004-02-01, -33,stopped,,2003-12-01, -33,stopped,,2003-05-01, -33,stopped,,2002-04-01, -33,stopped,,2001-12-01, -33,stopped,,2001-10-01, -33,stopped,,2001-04-01, -33,stopped,,2000-08-01, -33,stopped,,1998-06-01, -33,stopped,,1996-03-01, -33,stopped,,1995-01-01, +33,stopped,,2004-06-01, +33,stopped,,2003-09-01, +33,stopped,,2002-05-01, +33,stopped,,2000-02-01, +33,stopped,,1997-01-01, +33,stopped,,1996-08-01, +33,stopped,,1996-07-01, +33,stopped,,1994-06-01, +33,stopped,,1990-01-01, +33,stopped,order,,Mirena 52 MG Intrauterine System 33,stopped,order,2022-03-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,order,2021-12-01,lisinopril 10 MG Oral Tablet +33,stopped,order,2021-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,stopped,order,2021-04-01,lisinopril 10 MG Oral Tablet 33,stopped,order,2021-03-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,order,2020-03-01,Hydrochlorothiazide 25 MG Oral Tablet +33,stopped,order,2020-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 33,stopped,order,2019-08-01,lisinopril 10 MG Oral Tablet 33,stopped,order,2019-08-01,amLODIPine 2.5 MG Oral Tablet 33,stopped,order,2018-10-01,lisinopril 10 MG Oral Tablet @@ -1348,25 +1752,15 @@ cnt,status,intent,authoredon_month,medication_display 33,stopped,order,2015-04-01,lisinopril 10 MG Oral Tablet 33,stopped,order,2014-12-01,lisinopril 10 MG Oral Tablet 33,stopped,order,2012-04-01,lisinopril 10 MG Oral Tablet -33,stopped,order,2011-02-01, -33,stopped,order,2008-10-01, -33,stopped,order,2008-08-01, -33,stopped,order,2008-07-01, -33,stopped,order,2007-08-01, -33,stopped,order,2005-10-01, -33,stopped,order,2004-10-01, -33,stopped,order,2004-08-01, -33,stopped,order,2004-02-01, -33,stopped,order,2003-12-01, -33,stopped,order,2003-05-01, -33,stopped,order,2002-04-01, -33,stopped,order,2001-12-01, -33,stopped,order,2001-10-01, -33,stopped,order,2001-04-01, -33,stopped,order,2000-08-01, -33,stopped,order,1998-06-01, -33,stopped,order,1996-03-01, -33,stopped,order,1995-01-01, +33,stopped,order,2004-06-01, +33,stopped,order,2003-09-01, +33,stopped,order,2002-05-01, +33,stopped,order,2000-02-01, +33,stopped,order,1997-01-01, +33,stopped,order,1996-08-01, +33,stopped,order,1996-07-01, +33,stopped,order,1994-06-01, +33,stopped,order,1990-01-01, 33,active,,2023-03-01,amLODIPine 2.5 MG Oral Tablet 33,active,order,2023-03-01,amLODIPine 2.5 MG Oral Tablet 32,,,,Loratadine 5 MG Chewable Tablet @@ -1375,121 +1769,146 @@ cnt,status,intent,authoredon_month,medication_display 32,,,2022-07-01,lisinopril 10 MG Oral Tablet 32,,,2022-05-01,lisinopril 10 MG Oral Tablet 32,,,2022-04-01,amLODIPine 2.5 MG Oral Tablet +32,,,2021-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,,,2021-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,,,2020-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,,2020-10-01,amLODIPine 2.5 MG Oral Tablet 32,,,2020-06-01,lisinopril 10 MG Oral Tablet +32,,,2019-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,,2019-10-01,lisinopril 10 MG Oral Tablet 32,,,2019-06-01,lisinopril 10 MG Oral Tablet 32,,,2019-05-01,lisinopril 10 MG Oral Tablet +32,,,2016-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,,2016-08-01,lisinopril 10 MG Oral Tablet 32,,,2015-07-01,lisinopril 10 MG Oral Tablet -32,,,2008-02-01, -32,,,2007-07-01, -32,,,2006-02-01, -32,,,2005-05-01, -32,,,2005-03-01, -32,,,2000-09-01, -32,,,2000-02-01, -32,,,1999-03-01, +32,,,2003-06-01, +32,,,2001-07-01, +32,,,2001-02-01, +32,,,1999-08-01, +32,,,1999-05-01, 32,,,1999-02-01, -32,,,1998-07-01, -32,,,1998-02-01, -32,,,1997-11-01, -32,,,1997-08-01, -32,,,1994-07-01, -32,,,1991-06-01, +32,,,1998-08-01, +32,,,1997-12-01, +32,,,1996-06-01, +32,,,1994-08-01, +32,,,1994-01-01, +32,,,1993-11-01, +32,,,1991-01-01, +32,,,1990-02-01, +32,,,1989-12-01, +32,,,1989-02-01, +32,,,1989-01-01, 32,,order,,Loratadine 5 MG Chewable Tablet 32,,order,,Hydrocortisone 10 MG/ML Topical Cream 32,,order,2023-03-01,Hydrochlorothiazide 25 MG Oral Tablet 32,,order,2022-07-01,lisinopril 10 MG Oral Tablet 32,,order,2022-05-01,lisinopril 10 MG Oral Tablet 32,,order,2022-04-01,amLODIPine 2.5 MG Oral Tablet +32,,order,2021-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,,order,2021-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,,order,2020-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,order,2020-10-01,amLODIPine 2.5 MG Oral Tablet 32,,order,2020-06-01,lisinopril 10 MG Oral Tablet +32,,order,2019-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,order,2019-10-01,lisinopril 10 MG Oral Tablet 32,,order,2019-06-01,lisinopril 10 MG Oral Tablet 32,,order,2019-05-01,lisinopril 10 MG Oral Tablet +32,,order,2016-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,,order,2016-08-01,lisinopril 10 MG Oral Tablet 32,,order,2015-07-01,lisinopril 10 MG Oral Tablet -32,,order,2008-02-01, -32,,order,2007-07-01, -32,,order,2006-02-01, -32,,order,2005-05-01, -32,,order,2005-03-01, -32,,order,2000-09-01, -32,,order,2000-02-01, -32,,order,1999-03-01, +32,,order,2003-06-01, +32,,order,2001-07-01, +32,,order,2001-02-01, +32,,order,1999-08-01, +32,,order,1999-05-01, 32,,order,1999-02-01, -32,,order,1998-07-01, -32,,order,1998-02-01, -32,,order,1997-11-01, -32,,order,1997-08-01, -32,,order,1994-07-01, -32,,order,1991-06-01, -32,stopped,,2023-01-01, +32,,order,1998-08-01, +32,,order,1997-12-01, +32,,order,1996-06-01, +32,,order,1994-08-01, +32,,order,1994-01-01, +32,,order,1993-11-01, +32,,order,1991-01-01, +32,,order,1990-02-01, +32,,order,1989-12-01, +32,,order,1989-02-01, +32,,order,1989-01-01, +32,stopped,,2021-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,stopped,,2021-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,stopped,,2020-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,,2020-10-01,amLODIPine 2.5 MG Oral Tablet 32,stopped,,2020-06-01,lisinopril 10 MG Oral Tablet +32,stopped,,2019-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,,2019-10-01,lisinopril 10 MG Oral Tablet 32,stopped,,2019-06-01,lisinopril 10 MG Oral Tablet 32,stopped,,2019-05-01,lisinopril 10 MG Oral Tablet +32,stopped,,2016-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,,2016-08-01,lisinopril 10 MG Oral Tablet 32,stopped,,2015-07-01,lisinopril 10 MG Oral Tablet -32,stopped,,2010-07-01, -32,stopped,,2008-02-01, -32,stopped,,2007-07-01, -32,stopped,,2007-02-01, -32,stopped,,2005-03-01, -32,stopped,,2005-01-01, -32,stopped,,2004-03-01, -32,stopped,,2000-09-01, -32,stopped,,2000-02-01, -32,stopped,,1999-06-01, -32,stopped,,1999-03-01, -32,stopped,,1998-07-01, -32,stopped,,1997-11-01, -32,stopped,,1997-08-01, -32,stopped,,1995-05-01, -32,stopped,,1994-07-01, -32,stopped,,1994-05-01, -32,stopped,,1988-06-01, -32,stopped,order,2023-01-01, +32,stopped,,2003-06-01, +32,stopped,,2002-09-01, +32,stopped,,2001-09-01, +32,stopped,,2001-05-01, +32,stopped,,2001-02-01, +32,stopped,,1999-08-01, +32,stopped,,1998-12-01, +32,stopped,,1998-02-01, +32,stopped,,1997-12-01, +32,stopped,,1996-06-01, +32,stopped,,1995-07-01, +32,stopped,,1994-08-01, +32,stopped,,1991-01-01, +32,stopped,,1990-02-01, +32,stopped,,1989-12-01, +32,stopped,order,2021-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,stopped,order,2021-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +32,stopped,order,2020-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,order,2020-10-01,amLODIPine 2.5 MG Oral Tablet 32,stopped,order,2020-06-01,lisinopril 10 MG Oral Tablet +32,stopped,order,2019-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,order,2019-10-01,lisinopril 10 MG Oral Tablet 32,stopped,order,2019-06-01,lisinopril 10 MG Oral Tablet 32,stopped,order,2019-05-01,lisinopril 10 MG Oral Tablet +32,stopped,order,2016-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,stopped,order,2016-08-01,lisinopril 10 MG Oral Tablet 32,stopped,order,2015-07-01,lisinopril 10 MG Oral Tablet -32,stopped,order,2010-07-01, -32,stopped,order,2008-02-01, -32,stopped,order,2007-07-01, -32,stopped,order,2007-02-01, -32,stopped,order,2005-03-01, -32,stopped,order,2005-01-01, -32,stopped,order,2004-03-01, -32,stopped,order,2000-09-01, -32,stopped,order,2000-02-01, -32,stopped,order,1999-06-01, -32,stopped,order,1999-03-01, -32,stopped,order,1998-07-01, -32,stopped,order,1997-11-01, -32,stopped,order,1997-08-01, -32,stopped,order,1995-05-01, -32,stopped,order,1994-07-01, -32,stopped,order,1994-05-01, -32,stopped,order,1988-06-01, +32,stopped,order,2003-06-01, +32,stopped,order,2002-09-01, +32,stopped,order,2001-09-01, +32,stopped,order,2001-05-01, +32,stopped,order,2001-02-01, +32,stopped,order,1999-08-01, +32,stopped,order,1998-12-01, +32,stopped,order,1998-02-01, +32,stopped,order,1997-12-01, +32,stopped,order,1996-06-01, +32,stopped,order,1995-07-01, +32,stopped,order,1994-08-01, +32,stopped,order,1991-01-01, +32,stopped,order,1990-02-01, +32,stopped,order,1989-12-01, 32,active,,,Loratadine 5 MG Chewable Tablet -32,active,,2022-06-01, +32,active,,2023-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 32,active,order,,Loratadine 5 MG Chewable Tablet -32,active,order,2022-06-01, +32,active,order,2023-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,,,isoflurane 99.9 % Inhalation Solution +31,,,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,,2022-07-01,Hydrochlorothiazide 25 MG Oral Tablet 31,,,2022-06-01,lisinopril 10 MG Oral Tablet +31,,,2022-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,,2021-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,,2021-12-01,amLODIPine 2.5 MG Oral Tablet +31,,,2021-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,,2021-09-01,lisinopril 10 MG Oral Tablet 31,,,2021-04-01,Hydrochlorothiazide 25 MG Oral Tablet +31,,,2021-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,,2021-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,,2020-05-01,lisinopril 10 MG Oral Tablet 31,,,2020-04-01,lisinopril 10 MG Oral Tablet 31,,,2019-10-01,amLODIPine 2.5 MG Oral Tablet 31,,,2019-04-01,lisinopril 10 MG Oral Tablet +31,,,2019-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,,2018-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,,2018-10-01,amLODIPine 2.5 MG Oral Tablet 31,,,2018-03-01,amLODIPine 2.5 MG Oral Tablet 31,,,2017-09-01,lisinopril 10 MG Oral Tablet @@ -1503,25 +1922,37 @@ cnt,status,intent,authoredon_month,medication_display 31,,,2014-02-01,lisinopril 10 MG Oral Tablet 31,,,2013-01-01,Hydrochlorothiazide 25 MG Oral Tablet 31,,,2012-12-01,lisinopril 10 MG Oral Tablet -31,,,2006-09-01, -31,,,2004-05-01, -31,,,2004-01-01, -31,,,2001-01-01, -31,,,1999-08-01, -31,,,1997-05-01, -31,,,1996-06-01, -31,,,1996-01-01, -31,,,1994-06-01, -31,,,1990-06-01, +31,,,2003-01-01, +31,,,2000-01-01, +31,,,1999-07-01, +31,,,1998-09-01, +31,,,1998-05-01, +31,,,1998-01-01, +31,,,1995-02-01, +31,,,1993-05-01, +31,,,1993-03-01, +31,,,1993-02-01, +31,,,1993-01-01, +31,,,1990-09-01, +31,,,1986-12-01, +31,,order,,isoflurane 99.9 % Inhalation Solution +31,,order,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,order,2022-07-01,Hydrochlorothiazide 25 MG Oral Tablet 31,,order,2022-06-01,lisinopril 10 MG Oral Tablet +31,,order,2022-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,order,2021-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,order,2021-12-01,amLODIPine 2.5 MG Oral Tablet +31,,order,2021-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,order,2021-09-01,lisinopril 10 MG Oral Tablet 31,,order,2021-04-01,Hydrochlorothiazide 25 MG Oral Tablet +31,,order,2021-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,order,2021-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,order,2020-05-01,lisinopril 10 MG Oral Tablet 31,,order,2020-04-01,lisinopril 10 MG Oral Tablet 31,,order,2019-10-01,amLODIPine 2.5 MG Oral Tablet 31,,order,2019-04-01,lisinopril 10 MG Oral Tablet +31,,order,2019-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,,order,2018-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,,order,2018-10-01,amLODIPine 2.5 MG Oral Tablet 31,,order,2018-03-01,amLODIPine 2.5 MG Oral Tablet 31,,order,2017-09-01,lisinopril 10 MG Oral Tablet @@ -1535,22 +1966,32 @@ cnt,status,intent,authoredon_month,medication_display 31,,order,2014-02-01,lisinopril 10 MG Oral Tablet 31,,order,2013-01-01,Hydrochlorothiazide 25 MG Oral Tablet 31,,order,2012-12-01,lisinopril 10 MG Oral Tablet -31,,order,2006-09-01, -31,,order,2004-05-01, -31,,order,2004-01-01, -31,,order,2001-01-01, -31,,order,1999-08-01, -31,,order,1997-05-01, -31,,order,1996-06-01, -31,,order,1996-01-01, -31,,order,1994-06-01, -31,,order,1990-06-01, +31,,order,2003-01-01, +31,,order,2000-01-01, +31,,order,1999-07-01, +31,,order,1998-09-01, +31,,order,1998-05-01, +31,,order,1998-01-01, +31,,order,1995-02-01, +31,,order,1993-05-01, +31,,order,1993-03-01, +31,,order,1993-02-01, +31,,order,1993-01-01, +31,,order,1990-09-01, +31,,order,1986-12-01, +31,stopped,,,isoflurane 99.9 % Inhalation Solution +31,stopped,,2021-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,,2021-12-01,amLODIPine 2.5 MG Oral Tablet +31,stopped,,2021-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,,2021-09-01,lisinopril 10 MG Oral Tablet 31,stopped,,2021-04-01,Hydrochlorothiazide 25 MG Oral Tablet +31,stopped,,2021-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,stopped,,2021-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,,2020-04-01,lisinopril 10 MG Oral Tablet 31,stopped,,2019-10-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,,2019-04-01,lisinopril 10 MG Oral Tablet +31,stopped,,2019-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,stopped,,2018-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,,2018-10-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,,2018-03-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,,2017-09-01,lisinopril 10 MG Oral Tablet @@ -1563,24 +2004,32 @@ cnt,status,intent,authoredon_month,medication_display 31,stopped,,2014-02-01,lisinopril 10 MG Oral Tablet 31,stopped,,2013-01-01,Hydrochlorothiazide 25 MG Oral Tablet 31,stopped,,2012-12-01,lisinopril 10 MG Oral Tablet -31,stopped,,2006-09-01, -31,stopped,,2006-02-01, -31,stopped,,2004-05-01, -31,stopped,,2004-01-01, -31,stopped,,1999-08-01, +31,stopped,,2001-07-01, +31,stopped,,1999-07-01, 31,stopped,,1999-02-01, -31,stopped,,1998-02-01, -31,stopped,,1997-05-01, -31,stopped,,1996-06-01, -31,stopped,,1996-01-01, -31,stopped,,1994-06-01, -31,stopped,,1990-06-01, +31,stopped,,1998-09-01, +31,stopped,,1998-01-01, +31,stopped,,1996-09-01, +31,stopped,,1995-02-01, +31,stopped,,1994-01-01, +31,stopped,,1993-03-01, +31,stopped,,1993-02-01, +31,stopped,,1993-01-01, +31,stopped,,1991-03-01, +31,stopped,,1991-02-01, +31,stopped,order,,isoflurane 99.9 % Inhalation Solution +31,stopped,order,2021-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,order,2021-12-01,amLODIPine 2.5 MG Oral Tablet +31,stopped,order,2021-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,order,2021-09-01,lisinopril 10 MG Oral Tablet 31,stopped,order,2021-04-01,Hydrochlorothiazide 25 MG Oral Tablet +31,stopped,order,2021-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,stopped,order,2021-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,order,2020-04-01,lisinopril 10 MG Oral Tablet 31,stopped,order,2019-10-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,order,2019-04-01,lisinopril 10 MG Oral Tablet +31,stopped,order,2019-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +31,stopped,order,2018-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 31,stopped,order,2018-10-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,order,2018-03-01,amLODIPine 2.5 MG Oral Tablet 31,stopped,order,2017-09-01,lisinopril 10 MG Oral Tablet @@ -1593,37 +2042,43 @@ cnt,status,intent,authoredon_month,medication_display 31,stopped,order,2014-02-01,lisinopril 10 MG Oral Tablet 31,stopped,order,2013-01-01,Hydrochlorothiazide 25 MG Oral Tablet 31,stopped,order,2012-12-01,lisinopril 10 MG Oral Tablet -31,stopped,order,2006-09-01, -31,stopped,order,2006-02-01, -31,stopped,order,2004-05-01, -31,stopped,order,2004-01-01, -31,stopped,order,1999-08-01, +31,stopped,order,2001-07-01, +31,stopped,order,1999-07-01, 31,stopped,order,1999-02-01, -31,stopped,order,1998-02-01, -31,stopped,order,1997-05-01, -31,stopped,order,1996-06-01, -31,stopped,order,1996-01-01, -31,stopped,order,1994-06-01, -31,stopped,order,1990-06-01, -31,active,,2022-11-01, -31,active,order,2022-11-01, +31,stopped,order,1998-09-01, +31,stopped,order,1998-01-01, +31,stopped,order,1996-09-01, +31,stopped,order,1995-02-01, +31,stopped,order,1994-01-01, +31,stopped,order,1993-03-01, +31,stopped,order,1993-02-01, +31,stopped,order,1993-01-01, +31,stopped,order,1991-03-01, +31,stopped,order,1991-02-01, 30,,,,Meperidine Hydrochloride 50 MG Oral Tablet +30,,,,1 ML medroxyPROGESTERone acetate 150 MG/ML Injection 30,,,2023-02-01,lisinopril 10 MG Oral Tablet 30,,,2022-11-01,amLODIPine 2.5 MG Oral Tablet 30,,,2022-10-01,amLODIPine 2.5 MG Oral Tablet +30,,,2022-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2022-09-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2022-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2022-05-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,,2022-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2022-03-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2022-01-01,lisinopril 10 MG Oral Tablet 30,,,2021-12-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,,2021-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2021-08-01,lisinopril 10 MG Oral Tablet 30,,,2021-08-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,,2021-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2021-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2021-05-01,lisinopril 10 MG Oral Tablet 30,,,2021-02-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,,2020-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2020-12-01,amLODIPine 2.5 MG Oral Tablet 30,,,2020-09-01,lisinopril 10 MG Oral Tablet +30,,,2019-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2019-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2019-01-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2018-11-01,amLODIPine 2.5 MG Oral Tablet @@ -1631,6 +2086,7 @@ cnt,status,intent,authoredon_month,medication_display 30,,,2018-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2018-05-01,lisinopril 10 MG Oral Tablet 30,,,2018-04-01,lisinopril 10 MG Oral Tablet +30,,,2017-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,,2017-09-01,amLODIPine 2.5 MG Oral Tablet 30,,,2017-07-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,,2017-05-01,lisinopril 10 MG Oral Tablet @@ -1642,40 +2098,48 @@ cnt,status,intent,authoredon_month,medication_display 30,,,2013-09-01,lisinopril 10 MG Oral Tablet 30,,,2012-01-01,lisinopril 10 MG Oral Tablet 30,,,2010-03-01,lisinopril 10 MG Oral Tablet -30,,,2002-10-01, -30,,,2002-05-01, -30,,,2002-01-01, -30,,,2001-05-01, -30,,,2001-02-01, 30,,,2000-05-01, -30,,,1999-07-01, -30,,,1999-05-01, -30,,,1998-11-01, -30,,,1997-12-01, -30,,,1997-01-01, -30,,,1996-10-01, -30,,,1996-08-01, -30,,,1996-02-01, -30,,,1993-11-01, -30,,,1991-03-01, -30,,,1990-01-01, +30,,,2000-04-01, +30,,,1999-11-01, +30,,,1998-04-01, +30,,,1997-04-01, +30,,,1996-11-01, +30,,,1996-05-01, +30,,,1993-07-01, +30,,,1993-06-01, +30,,,1992-11-01, +30,,,1992-10-01, +30,,,1992-02-01, +30,,,1991-12-01, +30,,,1991-10-01, +30,,,1990-04-01, +30,,,1988-12-01, +30,,,1988-08-01, +30,,,1986-05-01, 30,,order,,Meperidine Hydrochloride 50 MG Oral Tablet +30,,order,,1 ML medroxyPROGESTERone acetate 150 MG/ML Injection 30,,order,2023-02-01,lisinopril 10 MG Oral Tablet 30,,order,2022-11-01,amLODIPine 2.5 MG Oral Tablet 30,,order,2022-10-01,amLODIPine 2.5 MG Oral Tablet +30,,order,2022-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2022-09-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2022-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2022-05-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,order,2022-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2022-03-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2022-01-01,lisinopril 10 MG Oral Tablet 30,,order,2021-12-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,order,2021-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2021-08-01,lisinopril 10 MG Oral Tablet 30,,order,2021-08-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,order,2021-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2021-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2021-05-01,lisinopril 10 MG Oral Tablet 30,,order,2021-02-01,Hydrochlorothiazide 25 MG Oral Tablet +30,,order,2020-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2020-12-01,amLODIPine 2.5 MG Oral Tablet 30,,order,2020-09-01,lisinopril 10 MG Oral Tablet +30,,order,2019-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2019-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2019-01-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2018-11-01,amLODIPine 2.5 MG Oral Tablet @@ -1683,6 +2147,7 @@ cnt,status,intent,authoredon_month,medication_display 30,,order,2018-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2018-05-01,lisinopril 10 MG Oral Tablet 30,,order,2018-04-01,lisinopril 10 MG Oral Tablet +30,,order,2017-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,,order,2017-09-01,amLODIPine 2.5 MG Oral Tablet 30,,order,2017-07-01,Hydrochlorothiazide 25 MG Oral Tablet 30,,order,2017-05-01,lisinopril 10 MG Oral Tablet @@ -1694,40 +2159,46 @@ cnt,status,intent,authoredon_month,medication_display 30,,order,2013-09-01,lisinopril 10 MG Oral Tablet 30,,order,2012-01-01,lisinopril 10 MG Oral Tablet 30,,order,2010-03-01,lisinopril 10 MG Oral Tablet -30,,order,2002-10-01, -30,,order,2002-05-01, -30,,order,2002-01-01, -30,,order,2001-05-01, -30,,order,2001-02-01, 30,,order,2000-05-01, -30,,order,1999-07-01, -30,,order,1999-05-01, -30,,order,1998-11-01, -30,,order,1997-12-01, -30,,order,1997-01-01, -30,,order,1996-10-01, -30,,order,1996-08-01, -30,,order,1996-02-01, -30,,order,1993-11-01, -30,,order,1991-03-01, -30,,order,1990-01-01, -30,stopped,,2023-02-01, +30,,order,2000-04-01, +30,,order,1999-11-01, +30,,order,1998-04-01, +30,,order,1997-04-01, +30,,order,1996-11-01, +30,,order,1996-05-01, +30,,order,1993-07-01, +30,,order,1993-06-01, +30,,order,1992-11-01, +30,,order,1992-10-01, +30,,order,1992-02-01, +30,,order,1991-12-01, +30,,order,1991-10-01, +30,,order,1990-04-01, +30,,order,1988-12-01, +30,,order,1988-08-01, +30,,order,1986-05-01, +30,stopped,,,1 ML medroxyPROGESTERone acetate 150 MG/ML Injection +30,stopped,,2022-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,,2022-01-01,lisinopril 10 MG Oral Tablet 30,stopped,,2021-12-01,Hydrochlorothiazide 25 MG Oral Tablet +30,stopped,,2021-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,,2021-08-01,lisinopril 10 MG Oral Tablet 30,stopped,,2021-08-01,Hydrochlorothiazide 25 MG Oral Tablet +30,stopped,,2021-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,,2021-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,,2021-05-01,lisinopril 10 MG Oral Tablet 30,stopped,,2021-02-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,,2020-12-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,,2020-09-01,lisinopril 10 MG Oral Tablet 30,stopped,,2020-05-01,lisinopril 10 MG Oral Tablet +30,stopped,,2019-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,,2019-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,,2018-11-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,,2018-08-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,,2018-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,,2018-05-01,lisinopril 10 MG Oral Tablet 30,stopped,,2018-04-01,lisinopril 10 MG Oral Tablet +30,stopped,,2017-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,,2017-09-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,,2017-07-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,,2017-05-01,lisinopril 10 MG Oral Tablet @@ -1738,37 +2209,46 @@ cnt,status,intent,authoredon_month,medication_display 30,stopped,,2013-09-01,lisinopril 10 MG Oral Tablet 30,stopped,,2012-01-01,lisinopril 10 MG Oral Tablet 30,stopped,,2010-03-01,lisinopril 10 MG Oral Tablet -30,stopped,,2005-05-01, -30,stopped,,2002-10-01, -30,stopped,,2002-01-01, -30,stopped,,2001-05-01, -30,stopped,,2001-02-01, +30,stopped,,2001-01-01, 30,stopped,,2000-05-01, -30,stopped,,1999-07-01, -30,stopped,,1998-11-01, -30,stopped,,1997-12-01, -30,stopped,,1997-01-01, -30,stopped,,1996-10-01, -30,stopped,,1996-08-01, -30,stopped,,1996-02-01, -30,stopped,,1991-06-01, -30,stopped,order,2023-02-01, +30,stopped,,2000-04-01, +30,stopped,,2000-01-01, +30,stopped,,1999-05-01, +30,stopped,,1998-08-01, +30,stopped,,1998-04-01, +30,stopped,,1996-11-01, +30,stopped,,1996-05-01, +30,stopped,,1993-07-01, +30,stopped,,1993-06-01, +30,stopped,,1993-05-01, +30,stopped,,1992-10-01, +30,stopped,,1992-02-01, +30,stopped,,1989-01-01, +30,stopped,,1988-08-01, +30,stopped,,1986-12-01, +30,stopped,,1986-05-01, +30,stopped,order,,1 ML medroxyPROGESTERone acetate 150 MG/ML Injection +30,stopped,order,2022-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,order,2022-01-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2021-12-01,Hydrochlorothiazide 25 MG Oral Tablet +30,stopped,order,2021-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,order,2021-08-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2021-08-01,Hydrochlorothiazide 25 MG Oral Tablet +30,stopped,order,2021-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,order,2021-06-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,order,2021-05-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2021-02-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,order,2020-12-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,order,2020-09-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2020-05-01,lisinopril 10 MG Oral Tablet +30,stopped,order,2019-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,order,2019-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,order,2018-11-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,order,2018-08-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,order,2018-08-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,order,2018-05-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2018-04-01,lisinopril 10 MG Oral Tablet +30,stopped,order,2017-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 30,stopped,order,2017-09-01,amLODIPine 2.5 MG Oral Tablet 30,stopped,order,2017-07-01,Hydrochlorothiazide 25 MG Oral Tablet 30,stopped,order,2017-05-01,lisinopril 10 MG Oral Tablet @@ -1779,33 +2259,39 @@ cnt,status,intent,authoredon_month,medication_display 30,stopped,order,2013-09-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2012-01-01,lisinopril 10 MG Oral Tablet 30,stopped,order,2010-03-01,lisinopril 10 MG Oral Tablet -30,stopped,order,2005-05-01, -30,stopped,order,2002-10-01, -30,stopped,order,2002-01-01, -30,stopped,order,2001-05-01, -30,stopped,order,2001-02-01, +30,stopped,order,2001-01-01, 30,stopped,order,2000-05-01, -30,stopped,order,1999-07-01, -30,stopped,order,1998-11-01, -30,stopped,order,1997-12-01, -30,stopped,order,1997-01-01, -30,stopped,order,1996-10-01, -30,stopped,order,1996-08-01, -30,stopped,order,1996-02-01, -30,stopped,order,1991-06-01, +30,stopped,order,2000-04-01, +30,stopped,order,2000-01-01, +30,stopped,order,1999-05-01, +30,stopped,order,1998-08-01, +30,stopped,order,1998-04-01, +30,stopped,order,1996-11-01, +30,stopped,order,1996-05-01, +30,stopped,order,1993-07-01, +30,stopped,order,1993-06-01, +30,stopped,order,1993-05-01, +30,stopped,order,1992-10-01, +30,stopped,order,1992-02-01, +30,stopped,order,1989-01-01, +30,stopped,order,1988-08-01, +30,stopped,order,1986-12-01, +30,stopped,order,1986-05-01, 30,active,,2023-03-01,Hydrochlorothiazide 25 MG Oral Tablet -30,active,,2022-05-01, 30,active,order,2023-03-01,Hydrochlorothiazide 25 MG Oral Tablet -30,active,order,2022-05-01, 29,,,,72 HR Fentanyl 0.025 MG/HR Transdermal System 29,,,2023-02-01,amLODIPine 2.5 MG Oral Tablet 29,,,2022-12-01,amLODIPine 2.5 MG Oral Tablet 29,,,2022-09-01,amLODIPine 2.5 MG Oral Tablet 29,,,2021-07-01,lisinopril 10 MG Oral Tablet 29,,,2021-05-01,Hydrochlorothiazide 25 MG Oral Tablet +29,,,2021-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2021-01-01,lisinopril 10 MG Oral Tablet +29,,,2020-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2020-01-01,lisinopril 10 MG Oral Tablet +29,,,2020-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2019-06-01,Hydrochlorothiazide 25 MG Oral Tablet +29,,,2019-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2019-04-01,amLODIPine 2.5 MG Oral Tablet 29,,,2019-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,,,2019-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -1814,38 +2300,38 @@ cnt,status,intent,authoredon_month,medication_display 29,,,2017-11-01,amLODIPine 2.5 MG Oral Tablet 29,,,2017-10-01,lisinopril 10 MG Oral Tablet 29,,,2017-07-01,lisinopril 10 MG Oral Tablet +29,,,2017-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2016-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,,,2016-01-01,amLODIPine 2.5 MG Oral Tablet 29,,,2015-11-01,lisinopril 10 MG Oral Tablet 29,,,2015-10-01,lisinopril 10 MG Oral Tablet +29,,,2015-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,,2014-01-01,amLODIPine 2.5 MG Oral Tablet 29,,,2013-12-01,lisinopril 10 MG Oral Tablet 29,,,2011-11-01,lisinopril 10 MG Oral Tablet 29,,,2010-01-01,lisinopril 10 MG Oral Tablet 29,,,2009-04-01,lisinopril 10 MG Oral Tablet -29,,,2006-10-01, 29,,,2004-11-01,lisinopril 10 MG Oral Tablet -29,,,2002-06-01, -29,,,2001-07-01, -29,,,1999-11-01, -29,,,1998-12-01, -29,,,1998-09-01, -29,,,1998-08-01, -29,,,1998-04-01, -29,,,1996-07-01, -29,,,1995-07-01, -29,,,1994-08-01, -29,,,1991-02-01, -29,,,1989-12-01, +29,,,1995-11-01, +29,,,1994-03-01, +29,,,1994-02-01, +29,,,1992-09-01, +29,,,1992-06-01, +29,,,1992-05-01, +29,,,1988-11-01, 29,,order,,72 HR Fentanyl 0.025 MG/HR Transdermal System 29,,order,2023-02-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2022-12-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2022-09-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2021-07-01,lisinopril 10 MG Oral Tablet 29,,order,2021-05-01,Hydrochlorothiazide 25 MG Oral Tablet +29,,order,2021-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2021-01-01,lisinopril 10 MG Oral Tablet +29,,order,2020-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2020-01-01,lisinopril 10 MG Oral Tablet +29,,order,2020-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2019-06-01,Hydrochlorothiazide 25 MG Oral Tablet +29,,order,2019-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2019-04-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2019-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,,order,2019-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -1854,35 +2340,36 @@ cnt,status,intent,authoredon_month,medication_display 29,,order,2017-11-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2017-10-01,lisinopril 10 MG Oral Tablet 29,,order,2017-07-01,lisinopril 10 MG Oral Tablet +29,,order,2017-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2016-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,,order,2016-01-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2015-11-01,lisinopril 10 MG Oral Tablet 29,,order,2015-10-01,lisinopril 10 MG Oral Tablet +29,,order,2015-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,,order,2014-01-01,amLODIPine 2.5 MG Oral Tablet 29,,order,2013-12-01,lisinopril 10 MG Oral Tablet 29,,order,2011-11-01,lisinopril 10 MG Oral Tablet 29,,order,2010-01-01,lisinopril 10 MG Oral Tablet 29,,order,2009-04-01,lisinopril 10 MG Oral Tablet -29,,order,2006-10-01, 29,,order,2004-11-01,lisinopril 10 MG Oral Tablet -29,,order,2002-06-01, -29,,order,2001-07-01, -29,,order,1999-11-01, -29,,order,1998-12-01, -29,,order,1998-09-01, -29,,order,1998-08-01, -29,,order,1998-04-01, -29,,order,1996-07-01, -29,,order,1995-07-01, -29,,order,1994-08-01, -29,,order,1991-02-01, -29,,order,1989-12-01, +29,,order,1995-11-01, +29,,order,1994-03-01, +29,,order,1994-02-01, +29,,order,1992-09-01, +29,,order,1992-06-01, +29,,order,1992-05-01, +29,,order,1988-11-01, 29,stopped,,,72 HR Fentanyl 0.025 MG/HR Transdermal System +29,stopped,,2022-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2021-07-01,lisinopril 10 MG Oral Tablet 29,stopped,,2021-05-01,Hydrochlorothiazide 25 MG Oral Tablet +29,stopped,,2021-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2021-01-01,lisinopril 10 MG Oral Tablet +29,stopped,,2020-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2020-01-01,lisinopril 10 MG Oral Tablet +29,stopped,,2020-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2019-06-01,Hydrochlorothiazide 25 MG Oral Tablet +29,stopped,,2019-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2019-04-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,,2019-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,stopped,,2019-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -1891,36 +2378,39 @@ cnt,status,intent,authoredon_month,medication_display 29,stopped,,2017-11-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,,2017-10-01,lisinopril 10 MG Oral Tablet 29,stopped,,2017-07-01,lisinopril 10 MG Oral Tablet +29,stopped,,2017-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2016-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,stopped,,2016-01-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,,2015-11-01,lisinopril 10 MG Oral Tablet 29,stopped,,2015-10-01,lisinopril 10 MG Oral Tablet +29,stopped,,2015-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,,2014-01-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,,2013-12-01,lisinopril 10 MG Oral Tablet 29,stopped,,2013-10-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,,2011-11-01,lisinopril 10 MG Oral Tablet 29,stopped,,2010-01-01,lisinopril 10 MG Oral Tablet -29,stopped,,2006-10-01, 29,stopped,,2004-11-01,lisinopril 10 MG Oral Tablet -29,stopped,,2002-06-01, -29,stopped,,2002-05-01, -29,stopped,,2001-07-01, -29,stopped,,2001-01-01, -29,stopped,,1999-05-01, -29,stopped,,1998-09-01, -29,stopped,,1998-08-01, -29,stopped,,1998-04-01, -29,stopped,,1996-07-01, -29,stopped,,1995-07-01, -29,stopped,,1994-08-01, -29,stopped,,1990-01-01, -29,stopped,,1989-12-01, +29,stopped,,1999-11-01, +29,stopped,,1998-05-01, +29,stopped,,1995-11-01, +29,stopped,,1994-02-01, +29,stopped,,1991-12-01, +29,stopped,,1991-10-01, +29,stopped,,1990-04-01, +29,stopped,,1989-02-01, +29,stopped,,1988-12-01, +29,stopped,,1988-11-01, 29,stopped,order,,72 HR Fentanyl 0.025 MG/HR Transdermal System +29,stopped,order,2022-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2021-07-01,lisinopril 10 MG Oral Tablet 29,stopped,order,2021-05-01,Hydrochlorothiazide 25 MG Oral Tablet +29,stopped,order,2021-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2021-01-01,lisinopril 10 MG Oral Tablet +29,stopped,order,2020-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2020-01-01,lisinopril 10 MG Oral Tablet +29,stopped,order,2020-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2019-06-01,Hydrochlorothiazide 25 MG Oral Tablet +29,stopped,order,2019-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2019-04-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,order,2019-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,stopped,order,2019-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -1929,61 +2419,71 @@ cnt,status,intent,authoredon_month,medication_display 29,stopped,order,2017-11-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,order,2017-10-01,lisinopril 10 MG Oral Tablet 29,stopped,order,2017-07-01,lisinopril 10 MG Oral Tablet +29,stopped,order,2017-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2016-03-01,Hydrochlorothiazide 25 MG Oral Tablet 29,stopped,order,2016-01-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,order,2015-11-01,lisinopril 10 MG Oral Tablet 29,stopped,order,2015-10-01,lisinopril 10 MG Oral Tablet +29,stopped,order,2015-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 29,stopped,order,2014-01-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,order,2013-12-01,lisinopril 10 MG Oral Tablet 29,stopped,order,2013-10-01,amLODIPine 2.5 MG Oral Tablet 29,stopped,order,2011-11-01,lisinopril 10 MG Oral Tablet 29,stopped,order,2010-01-01,lisinopril 10 MG Oral Tablet -29,stopped,order,2006-10-01, 29,stopped,order,2004-11-01,lisinopril 10 MG Oral Tablet -29,stopped,order,2002-06-01, -29,stopped,order,2002-05-01, -29,stopped,order,2001-07-01, -29,stopped,order,2001-01-01, -29,stopped,order,1999-05-01, -29,stopped,order,1998-09-01, -29,stopped,order,1998-08-01, -29,stopped,order,1998-04-01, -29,stopped,order,1996-07-01, -29,stopped,order,1995-07-01, -29,stopped,order,1994-08-01, -29,stopped,order,1990-01-01, -29,stopped,order,1989-12-01, +29,stopped,order,1999-11-01, +29,stopped,order,1998-05-01, +29,stopped,order,1995-11-01, +29,stopped,order,1994-02-01, +29,stopped,order,1991-12-01, +29,stopped,order,1991-10-01, +29,stopped,order,1990-04-01, +29,stopped,order,1989-02-01, +29,stopped,order,1988-12-01, +29,stopped,order,1988-11-01, 29,active,,,72 HR Fentanyl 0.025 MG/HR Transdermal System -29,active,,2022-07-01, 29,active,order,,72 HR Fentanyl 0.025 MG/HR Transdermal System -29,active,order,2022-07-01, 28,,,,Furosemide 40 MG Oral Tablet 28,,,,Acetaminophen 325 MG / HYDROcodone Bitartrate 7.5 MG Oral Tablet 28,,,2023-01-01,lisinopril 10 MG Oral Tablet +28,,,2023-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2023-01-01,amLODIPine 2.5 MG Oral Tablet 28,,,2022-11-01,lisinopril 10 MG Oral Tablet +28,,,2022-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,,,2022-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2022-09-01,lisinopril 10 MG Oral Tablet +28,,,2022-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2022-05-01,amLODIPine 2.5 MG Oral Tablet +28,,,2022-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2022-02-01,Hydrochlorothiazide 25 MG Oral Tablet +28,,,2022-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2021-08-01,amLODIPine 2.5 MG Oral Tablet +28,,,2020-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2020-09-01,amLODIPine 2.5 MG Oral Tablet 28,,,2020-08-01,lisinopril 10 MG Oral Tablet +28,,,2020-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,,,2020-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2020-01-01,amLODIPine 2.5 MG Oral Tablet 28,,,2020-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,,2019-11-01,amLODIPine 2.5 MG Oral Tablet +28,,,2019-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2019-01-01,amLODIPine 2.5 MG Oral Tablet 28,,,2018-12-01,lisinopril 10 MG Oral Tablet 28,,,2018-12-01,amLODIPine 2.5 MG Oral Tablet +28,,,2018-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2018-06-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,,2017-01-01,amLODIPine 2.5 MG Oral Tablet 28,,,2017-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,,2016-11-01,lisinopril 10 MG Oral Tablet 28,,,2016-04-01,lisinopril 10 MG Oral Tablet 28,,,2016-03-01,amLODIPine 2.5 MG Oral Tablet +28,,,2015-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2015-04-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,,2014-12-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,,2014-11-01,lisinopril 10 MG Oral Tablet +28,,,2014-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2014-07-01,lisinopril 10 MG Oral Tablet +28,,,2014-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,,2014-03-01,lisinopril 10 MG Oral Tablet 28,,,2013-09-01,amLODIPine 2.5 MG Oral Tablet 28,,,2012-01-01,amLODIPine 2.5 MG Oral Tablet @@ -1991,44 +2491,63 @@ cnt,status,intent,authoredon_month,medication_display 28,,,2009-10-01,lisinopril 10 MG Oral Tablet 28,,,2009-02-01,lisinopril 10 MG Oral Tablet 28,,,2005-11-01,lisinopril 10 MG Oral Tablet -28,,,2005-09-01, -28,,,2005-06-01, -28,,,2005-02-01, -28,,,2000-04-01, -28,,,2000-01-01, -28,,,1998-01-01, -28,,,1996-09-01, -28,,,1993-07-01, -28,,,1993-06-01, -28,,,1993-03-01, -28,,,1986-12-01, +28,,,1999-12-01, +28,,,1999-01-01, +28,,,1995-06-01, +28,,,1995-03-01, +28,,,1992-08-01, +28,,,1992-07-01, +28,,,1991-05-01, +28,,,1990-07-01, +28,,,1990-05-01, +28,,,1989-06-01, +28,,,1989-05-01, +28,,,1989-04-01, +28,,,1988-07-01, +28,,,1988-02-01, +28,,,1986-08-01, +28,,,1985-12-01, 28,,order,,Furosemide 40 MG Oral Tablet 28,,order,,Acetaminophen 325 MG / HYDROcodone Bitartrate 7.5 MG Oral Tablet 28,,order,2023-01-01,lisinopril 10 MG Oral Tablet +28,,order,2023-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2023-01-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2022-11-01,lisinopril 10 MG Oral Tablet +28,,order,2022-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,,order,2022-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2022-09-01,lisinopril 10 MG Oral Tablet +28,,order,2022-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2022-05-01,amLODIPine 2.5 MG Oral Tablet +28,,order,2022-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2022-02-01,Hydrochlorothiazide 25 MG Oral Tablet +28,,order,2022-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2021-08-01,amLODIPine 2.5 MG Oral Tablet +28,,order,2020-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2020-09-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2020-08-01,lisinopril 10 MG Oral Tablet +28,,order,2020-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,,order,2020-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2020-01-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2020-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,order,2019-11-01,amLODIPine 2.5 MG Oral Tablet +28,,order,2019-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2019-01-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2018-12-01,lisinopril 10 MG Oral Tablet 28,,order,2018-12-01,amLODIPine 2.5 MG Oral Tablet +28,,order,2018-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2018-06-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,order,2017-01-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2017-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,order,2016-11-01,lisinopril 10 MG Oral Tablet 28,,order,2016-04-01,lisinopril 10 MG Oral Tablet 28,,order,2016-03-01,amLODIPine 2.5 MG Oral Tablet +28,,order,2015-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2015-04-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,order,2014-12-01,Hydrochlorothiazide 25 MG Oral Tablet 28,,order,2014-11-01,lisinopril 10 MG Oral Tablet +28,,order,2014-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2014-07-01,lisinopril 10 MG Oral Tablet +28,,order,2014-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,,order,2014-03-01,lisinopril 10 MG Oral Tablet 28,,order,2013-09-01,amLODIPine 2.5 MG Oral Tablet 28,,order,2012-01-01,amLODIPine 2.5 MG Oral Tablet @@ -2036,27 +2555,40 @@ cnt,status,intent,authoredon_month,medication_display 28,,order,2009-10-01,lisinopril 10 MG Oral Tablet 28,,order,2009-02-01,lisinopril 10 MG Oral Tablet 28,,order,2005-11-01,lisinopril 10 MG Oral Tablet -28,,order,2005-09-01, -28,,order,2005-06-01, -28,,order,2005-02-01, -28,,order,2000-04-01, -28,,order,2000-01-01, -28,,order,1998-01-01, -28,,order,1996-09-01, -28,,order,1993-07-01, -28,,order,1993-06-01, -28,,order,1993-03-01, -28,,order,1986-12-01, +28,,order,1999-12-01, +28,,order,1999-01-01, +28,,order,1995-06-01, +28,,order,1995-03-01, +28,,order,1992-08-01, +28,,order,1992-07-01, +28,,order,1991-05-01, +28,,order,1990-07-01, +28,,order,1990-05-01, +28,,order,1989-06-01, +28,,order,1989-05-01, +28,,order,1989-04-01, +28,,order,1988-07-01, +28,,order,1988-02-01, +28,,order,1986-08-01, +28,,order,1985-12-01, 28,stopped,,,Meperidine Hydrochloride 50 MG Oral Tablet 28,stopped,,2022-03-01,Hydrochlorothiazide 25 MG Oral Tablet +28,stopped,,2022-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2022-02-01,Hydrochlorothiazide 25 MG Oral Tablet +28,stopped,,2022-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2021-08-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,,2020-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,stopped,,2020-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2020-09-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,,2020-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,stopped,,2020-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2020-01-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,,2020-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,,2019-11-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,,2019-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2018-12-01,lisinopril 10 MG Oral Tablet 28,stopped,,2018-12-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,,2018-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2018-06-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,,2018-02-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,,2017-01-01,amLODIPine 2.5 MG Oral Tablet @@ -2065,39 +2597,51 @@ cnt,status,intent,authoredon_month,medication_display 28,stopped,,2016-05-01,lisinopril 10 MG Oral Tablet 28,stopped,,2016-04-01,lisinopril 10 MG Oral Tablet 28,stopped,,2016-03-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,,2015-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2015-04-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,,2014-12-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,,2014-11-01,lisinopril 10 MG Oral Tablet +28,stopped,,2014-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2014-07-01,lisinopril 10 MG Oral Tablet +28,stopped,,2014-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,,2014-03-01,lisinopril 10 MG Oral Tablet 28,stopped,,2013-09-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,,2010-08-01,lisinopril 10 MG Oral Tablet 28,stopped,,2009-10-01,lisinopril 10 MG Oral Tablet 28,stopped,,2009-04-01,lisinopril 10 MG Oral Tablet 28,stopped,,2005-11-01,lisinopril 10 MG Oral Tablet -28,stopped,,2005-09-01, -28,stopped,,2005-06-01, -28,stopped,,2005-02-01, -28,stopped,,2000-04-01, -28,stopped,,1999-11-01, -28,stopped,,1998-12-01, -28,stopped,,1998-01-01, -28,stopped,,1996-09-01, -28,stopped,,1993-07-01, -28,stopped,,1993-06-01, -28,stopped,,1991-03-01, -28,stopped,,1991-02-01, -28,stopped,,1986-12-01, +28,stopped,,1999-01-01, +28,stopped,,1997-04-01, +28,stopped,,1995-06-01, +28,stopped,,1995-03-01, +28,stopped,,1994-03-01, +28,stopped,,1993-11-01, +28,stopped,,1992-09-01, +28,stopped,,1992-06-01, +28,stopped,,1992-05-01, +28,stopped,,1990-09-01, +28,stopped,,1990-07-01, +28,stopped,,1990-05-01, +28,stopped,,1989-04-01, +28,stopped,,1985-12-01, 28,stopped,order,,Meperidine Hydrochloride 50 MG Oral Tablet 28,stopped,order,2022-03-01,Hydrochlorothiazide 25 MG Oral Tablet +28,stopped,order,2022-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2022-02-01,Hydrochlorothiazide 25 MG Oral Tablet +28,stopped,order,2022-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2021-08-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,order,2020-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,stopped,order,2020-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2020-09-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,order,2020-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +28,stopped,order,2020-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2020-01-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,order,2020-01-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,order,2019-11-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,order,2019-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2018-12-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2018-12-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,order,2018-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2018-06-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,order,2018-02-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,order,2017-01-01,amLODIPine 2.5 MG Oral Tablet @@ -2106,37 +2650,43 @@ cnt,status,intent,authoredon_month,medication_display 28,stopped,order,2016-05-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2016-04-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2016-03-01,amLODIPine 2.5 MG Oral Tablet +28,stopped,order,2015-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2015-04-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,order,2014-12-01,Hydrochlorothiazide 25 MG Oral Tablet 28,stopped,order,2014-11-01,lisinopril 10 MG Oral Tablet +28,stopped,order,2014-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2014-07-01,lisinopril 10 MG Oral Tablet +28,stopped,order,2014-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 28,stopped,order,2014-03-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2013-09-01,amLODIPine 2.5 MG Oral Tablet 28,stopped,order,2010-08-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2009-10-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2009-04-01,lisinopril 10 MG Oral Tablet 28,stopped,order,2005-11-01,lisinopril 10 MG Oral Tablet -28,stopped,order,2005-09-01, -28,stopped,order,2005-06-01, -28,stopped,order,2005-02-01, -28,stopped,order,2000-04-01, -28,stopped,order,1999-11-01, -28,stopped,order,1998-12-01, -28,stopped,order,1998-01-01, -28,stopped,order,1996-09-01, -28,stopped,order,1993-07-01, -28,stopped,order,1993-06-01, -28,stopped,order,1991-03-01, -28,stopped,order,1991-02-01, -28,stopped,order,1986-12-01, +28,stopped,order,1999-01-01, +28,stopped,order,1997-04-01, +28,stopped,order,1995-06-01, +28,stopped,order,1995-03-01, +28,stopped,order,1994-03-01, +28,stopped,order,1993-11-01, +28,stopped,order,1992-09-01, +28,stopped,order,1992-06-01, +28,stopped,order,1992-05-01, +28,stopped,order,1990-09-01, +28,stopped,order,1990-07-01, +28,stopped,order,1990-05-01, +28,stopped,order,1989-04-01, +28,stopped,order,1985-12-01, 28,active,,,Furosemide 40 MG Oral Tablet 28,active,order,,Furosemide 40 MG Oral Tablet 27,,,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] 27,,,,12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule +27,,,,10 ML Furosemide 10 MG/ML Injection 27,,,2023-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2022-10-01,lisinopril 10 MG Oral Tablet 27,,,2022-10-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2022-08-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,,2022-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2022-02-01,amLODIPine 2.5 MG Oral Tablet 27,,,2021-10-01,lisinopril 10 MG Oral Tablet @@ -2149,23 +2699,34 @@ cnt,status,intent,authoredon_month,medication_display 27,,,2020-10-01,lisinopril 10 MG Oral Tablet 27,,,2020-09-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2020-08-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,,2020-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2020-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2019-12-01,lisinopril 10 MG Oral Tablet 27,,,2019-11-01,lisinopril 10 MG Oral Tablet +27,,,2019-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,,2019-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2019-05-01,amLODIPine 2.5 MG Oral Tablet 27,,,2019-04-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,,2018-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2018-11-01,lisinopril 10 MG Oral Tablet +27,,,2018-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,,2018-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2018-09-01,amLODIPine 2.5 MG Oral Tablet 27,,,2018-06-01,lisinopril 10 MG Oral Tablet +27,,,2018-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,,2018-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2018-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,,2017-12-01,lisinopril 10 MG Oral Tablet +27,,,2017-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2017-11-01,lisinopril 10 MG Oral Tablet 27,,,2017-10-01,amLODIPine 2.5 MG Oral Tablet 27,,,2017-08-01,lisinopril 10 MG Oral Tablet 27,,,2017-08-01,amLODIPine 2.5 MG Oral Tablet 27,,,2017-04-01,lisinopril 10 MG Oral Tablet +27,,,2016-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2016-08-01,amLODIPine 2.5 MG Oral Tablet 27,,,2016-06-01,lisinopril 10 MG Oral Tablet +27,,,2016-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,,2015-09-01,lisinopril 10 MG Oral Tablet 27,,,2015-07-01,amLODIPine 2.5 MG Oral Tablet 27,,,2015-04-01,amLODIPine 2.5 MG Oral Tablet @@ -2184,30 +2745,35 @@ cnt,status,intent,authoredon_month,medication_display 27,,,2009-03-01,lisinopril 10 MG Oral Tablet 27,,,2009-01-01,lisinopril 10 MG Oral Tablet 27,,,2007-12-01,Hydrochlorothiazide 25 MG Oral Tablet -27,,,2004-09-01, 27,,,2003-11-01,lisinopril 10 MG Oral Tablet 27,,,2002-11-01,lisinopril 10 MG Oral Tablet -27,,,2001-09-01, 27,,,2000-10-01,lisinopril 10 MG Oral Tablet -27,,,1999-01-01, -27,,,1998-05-01, -27,,,1996-11-01, -27,,,1996-05-01, -27,,,1995-02-01, -27,,,1994-02-01, -27,,,1994-01-01, -27,,,1993-05-01, -27,,,1992-06-01, -27,,,1991-01-01, -27,,,1990-04-01, -27,,,1990-02-01, -27,,,1989-02-01, +27,,,1999-04-01, +27,,,1997-09-01, +27,,,1995-04-01, +27,,,1994-10-01, +27,,,1994-09-01, +27,,,1993-10-01, +27,,,1992-04-01, +27,,,1992-01-01, +27,,,1991-08-01, +27,,,1990-12-01, +27,,,1990-10-01, +27,,,1990-08-01, +27,,,1989-10-01, +27,,,1988-05-01, +27,,,1988-01-01, +27,,,1987-12-01, +27,,,1986-09-01, +27,,,1986-06-01, 27,,order,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] 27,,order,,12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule +27,,order,,10 ML Furosemide 10 MG/ML Injection 27,,order,2023-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2022-10-01,lisinopril 10 MG Oral Tablet 27,,order,2022-10-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2022-08-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,order,2022-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2022-02-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2021-10-01,lisinopril 10 MG Oral Tablet @@ -2220,23 +2786,34 @@ cnt,status,intent,authoredon_month,medication_display 27,,order,2020-10-01,lisinopril 10 MG Oral Tablet 27,,order,2020-09-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2020-08-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,order,2020-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2020-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2019-12-01,lisinopril 10 MG Oral Tablet 27,,order,2019-11-01,lisinopril 10 MG Oral Tablet +27,,order,2019-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,order,2019-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2019-05-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2019-04-01,Hydrochlorothiazide 25 MG Oral Tablet +27,,order,2018-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2018-11-01,lisinopril 10 MG Oral Tablet +27,,order,2018-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,order,2018-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2018-09-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2018-06-01,lisinopril 10 MG Oral Tablet +27,,order,2018-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,,order,2018-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2018-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,,order,2017-12-01,lisinopril 10 MG Oral Tablet +27,,order,2017-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2017-11-01,lisinopril 10 MG Oral Tablet 27,,order,2017-10-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2017-08-01,lisinopril 10 MG Oral Tablet 27,,order,2017-08-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2017-04-01,lisinopril 10 MG Oral Tablet +27,,order,2016-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2016-08-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2016-06-01,lisinopril 10 MG Oral Tablet +27,,order,2016-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,,order,2015-09-01,lisinopril 10 MG Oral Tablet 27,,order,2015-07-01,amLODIPine 2.5 MG Oral Tablet 27,,order,2015-04-01,amLODIPine 2.5 MG Oral Tablet @@ -2255,25 +2832,30 @@ cnt,status,intent,authoredon_month,medication_display 27,,order,2009-03-01,lisinopril 10 MG Oral Tablet 27,,order,2009-01-01,lisinopril 10 MG Oral Tablet 27,,order,2007-12-01,Hydrochlorothiazide 25 MG Oral Tablet -27,,order,2004-09-01, 27,,order,2003-11-01,lisinopril 10 MG Oral Tablet 27,,order,2002-11-01,lisinopril 10 MG Oral Tablet -27,,order,2001-09-01, 27,,order,2000-10-01,lisinopril 10 MG Oral Tablet -27,,order,1999-01-01, -27,,order,1998-05-01, -27,,order,1996-11-01, -27,,order,1996-05-01, -27,,order,1995-02-01, -27,,order,1994-02-01, -27,,order,1994-01-01, -27,,order,1993-05-01, -27,,order,1992-06-01, -27,,order,1991-01-01, -27,,order,1990-04-01, -27,,order,1990-02-01, -27,,order,1989-02-01, +27,,order,1999-04-01, +27,,order,1997-09-01, +27,,order,1995-04-01, +27,,order,1994-10-01, +27,,order,1994-09-01, +27,,order,1993-10-01, +27,,order,1992-04-01, +27,,order,1992-01-01, +27,,order,1991-08-01, +27,,order,1990-12-01, +27,,order,1990-10-01, +27,,order,1990-08-01, +27,,order,1989-10-01, +27,,order,1988-05-01, +27,,order,1988-01-01, +27,,order,1987-12-01, +27,,order,1986-09-01, +27,,order,1986-06-01, 27,stopped,,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +27,stopped,,,10 ML Furosemide 10 MG/ML Injection +27,stopped,,2022-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2022-02-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2021-10-01,lisinopril 10 MG Oral Tablet 27,stopped,,2021-07-01,amLODIPine 2.5 MG Oral Tablet @@ -2282,23 +2864,33 @@ cnt,status,intent,authoredon_month,medication_display 27,stopped,,2021-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,,2020-09-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,,2020-08-01,lisinopril 10 MG Oral Tablet +27,stopped,,2020-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2020-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,,2019-12-01,lisinopril 10 MG Oral Tablet 27,stopped,,2019-11-01,lisinopril 10 MG Oral Tablet +27,stopped,,2019-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,stopped,,2019-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2019-05-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2019-04-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,,2019-01-01,amLODIPine 2.5 MG Oral Tablet +27,stopped,,2018-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2018-11-01,lisinopril 10 MG Oral Tablet +27,stopped,,2018-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,stopped,,2018-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2018-09-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2018-06-01,lisinopril 10 MG Oral Tablet +27,stopped,,2018-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2018-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,,2017-12-01,lisinopril 10 MG Oral Tablet +27,stopped,,2017-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2017-11-01,lisinopril 10 MG Oral Tablet 27,stopped,,2017-10-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2017-08-01,lisinopril 10 MG Oral Tablet 27,stopped,,2017-08-01,amLODIPine 2.5 MG Oral Tablet +27,stopped,,2016-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2016-08-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2016-06-01,lisinopril 10 MG Oral Tablet +27,stopped,,2016-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,,2015-09-01,lisinopril 10 MG Oral Tablet 27,stopped,,2015-07-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,,2015-04-01,amLODIPine 2.5 MG Oral Tablet @@ -2318,21 +2910,27 @@ cnt,status,intent,authoredon_month,medication_display 27,stopped,,2009-02-01,lisinopril 10 MG Oral Tablet 27,stopped,,2009-01-01,lisinopril 10 MG Oral Tablet 27,stopped,,2007-12-01,Hydrochlorothiazide 25 MG Oral Tablet -27,stopped,,2004-09-01, 27,stopped,,2003-11-01,lisinopril 10 MG Oral Tablet +27,stopped,,2003-01-01, 27,stopped,,2002-11-01,lisinopril 10 MG Oral Tablet -27,stopped,,2000-01-01, -27,stopped,,1999-01-01, -27,stopped,,1998-05-01, -27,stopped,,1996-11-01, -27,stopped,,1996-05-01, -27,stopped,,1995-02-01, -27,stopped,,1994-02-01, -27,stopped,,1994-01-01, -27,stopped,,1993-05-01, -27,stopped,,1991-01-01, -27,stopped,,1990-02-01, +27,stopped,,1999-12-01, +27,stopped,,1994-10-01, +27,stopped,,1994-09-01, +27,stopped,,1992-11-01, +27,stopped,,1992-08-01, +27,stopped,,1992-07-01, +27,stopped,,1992-01-01, +27,stopped,,1990-10-01, +27,stopped,,1989-06-01, +27,stopped,,1989-05-01, +27,stopped,,1988-05-01, +27,stopped,,1988-02-01, +27,stopped,,1988-01-01, +27,stopped,,1987-12-01, +27,stopped,,1986-09-01, 27,stopped,order,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +27,stopped,order,,10 ML Furosemide 10 MG/ML Injection +27,stopped,order,2022-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2022-02-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2021-10-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2021-07-01,amLODIPine 2.5 MG Oral Tablet @@ -2341,23 +2939,33 @@ cnt,status,intent,authoredon_month,medication_display 27,stopped,order,2021-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,order,2020-09-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,order,2020-08-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2020-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2020-02-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,order,2019-12-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2019-11-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2019-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,stopped,order,2019-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2019-05-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2019-04-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,order,2019-01-01,amLODIPine 2.5 MG Oral Tablet +27,stopped,order,2018-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2018-11-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2018-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +27,stopped,order,2018-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2018-09-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2018-06-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2018-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2018-03-01,Hydrochlorothiazide 25 MG Oral Tablet 27,stopped,order,2017-12-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2017-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2017-11-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2017-10-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2017-08-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2017-08-01,amLODIPine 2.5 MG Oral Tablet +27,stopped,order,2016-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2016-08-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2016-06-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2016-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 27,stopped,order,2015-09-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2015-07-01,amLODIPine 2.5 MG Oral Tablet 27,stopped,order,2015-04-01,amLODIPine 2.5 MG Oral Tablet @@ -2377,20 +2985,24 @@ cnt,status,intent,authoredon_month,medication_display 27,stopped,order,2009-02-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2009-01-01,lisinopril 10 MG Oral Tablet 27,stopped,order,2007-12-01,Hydrochlorothiazide 25 MG Oral Tablet -27,stopped,order,2004-09-01, 27,stopped,order,2003-11-01,lisinopril 10 MG Oral Tablet +27,stopped,order,2003-01-01, 27,stopped,order,2002-11-01,lisinopril 10 MG Oral Tablet -27,stopped,order,2000-01-01, -27,stopped,order,1999-01-01, -27,stopped,order,1998-05-01, -27,stopped,order,1996-11-01, -27,stopped,order,1996-05-01, -27,stopped,order,1995-02-01, -27,stopped,order,1994-02-01, -27,stopped,order,1994-01-01, -27,stopped,order,1993-05-01, -27,stopped,order,1991-01-01, -27,stopped,order,1990-02-01, +27,stopped,order,1999-12-01, +27,stopped,order,1994-10-01, +27,stopped,order,1994-09-01, +27,stopped,order,1992-11-01, +27,stopped,order,1992-08-01, +27,stopped,order,1992-07-01, +27,stopped,order,1992-01-01, +27,stopped,order,1990-10-01, +27,stopped,order,1989-06-01, +27,stopped,order,1989-05-01, +27,stopped,order,1988-05-01, +27,stopped,order,1988-02-01, +27,stopped,order,1988-01-01, +27,stopped,order,1987-12-01, +27,stopped,order,1986-09-01, 27,active,,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] 27,active,,,12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule 27,active,order,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] @@ -2407,25 +3019,37 @@ cnt,status,intent,authoredon_month,medication_display 26,,,2020-11-01,amLODIPine 2.5 MG Oral Tablet 26,,,2020-11-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,,2020-10-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2020-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2020-06-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,,2019-12-01,amLODIPine 2.5 MG Oral Tablet 26,,,2019-11-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2019-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2019-07-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2019-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,,,2019-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2018-05-01,amLODIPine 2.5 MG Oral Tablet 26,,,2018-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2018-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2018-01-01,amLODIPine 2.5 MG Oral Tablet 26,,,2017-12-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2017-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2017-10-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2016-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2016-12-01,amLODIPine 2.5 MG Oral Tablet +26,,,2016-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2016-10-01,lisinopril 10 MG Oral Tablet 26,,,2016-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,,2016-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2016-01-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,,2015-12-01,lisinopril 10 MG Oral Tablet 26,,,2015-11-01,amLODIPine 2.5 MG Oral Tablet +26,,,2015-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,,,2015-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2015-02-01,lisinopril 10 MG Oral Tablet 26,,,2014-07-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,,2014-02-01,amLODIPine 2.5 MG Oral Tablet 26,,,2014-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet +26,,,2014-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,,2013-11-01,lisinopril 10 MG Oral Tablet 26,,,2013-10-01,lisinopril 10 MG Oral Tablet 26,,,2013-04-01,lisinopril 10 MG Oral Tablet @@ -2436,25 +3060,14 @@ cnt,status,intent,authoredon_month,medication_display 26,,,2010-01-01,amLODIPine 2.5 MG Oral Tablet 26,,,2009-12-01,amLODIPine 2.5 MG Oral Tablet 26,,,2009-04-01,Hydrochlorothiazide 25 MG Oral Tablet -26,,,2002-09-01, -26,,,1999-12-01, -26,,,1997-04-01, -26,,,1995-06-01, -26,,,1995-03-01, -26,,,1993-02-01, -26,,,1993-01-01, -26,,,1992-07-01, -26,,,1992-05-01, -26,,,1992-02-01, -26,,,1991-12-01, -26,,,1991-10-01, -26,,,1991-05-01, -26,,,1990-05-01, -26,,,1989-06-01, -26,,,1989-04-01, -26,,,1988-11-01, -26,,,1988-08-01, -26,,,1987-12-01, +26,,,2000-12-01, +26,,,1996-12-01, +26,,,1995-08-01, +26,,,1993-08-01, +26,,,1991-09-01, +26,,,1991-07-01, +26,,,1990-03-01, +26,,,1987-08-01, 26,,order,,tramadol hydrochloride 50 MG Oral Tablet 26,,order,2022-12-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,order,2022-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2467,25 +3080,37 @@ cnt,status,intent,authoredon_month,medication_display 26,,order,2020-11-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2020-11-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,order,2020-10-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2020-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2020-06-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,order,2019-12-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2019-11-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2019-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2019-07-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2019-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,,order,2019-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2018-05-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2018-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2018-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2018-01-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2017-12-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2017-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2017-10-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2016-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2016-12-01,amLODIPine 2.5 MG Oral Tablet +26,,order,2016-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2016-10-01,lisinopril 10 MG Oral Tablet 26,,order,2016-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,,order,2016-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2016-01-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,order,2015-12-01,lisinopril 10 MG Oral Tablet 26,,order,2015-11-01,amLODIPine 2.5 MG Oral Tablet +26,,order,2015-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,,order,2015-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2015-02-01,lisinopril 10 MG Oral Tablet 26,,order,2014-07-01,Hydrochlorothiazide 25 MG Oral Tablet 26,,order,2014-02-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2014-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet +26,,order,2014-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,,order,2013-11-01,lisinopril 10 MG Oral Tablet 26,,order,2013-10-01,lisinopril 10 MG Oral Tablet 26,,order,2013-04-01,lisinopril 10 MG Oral Tablet @@ -2496,26 +3121,18 @@ cnt,status,intent,authoredon_month,medication_display 26,,order,2010-01-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2009-12-01,amLODIPine 2.5 MG Oral Tablet 26,,order,2009-04-01,Hydrochlorothiazide 25 MG Oral Tablet -26,,order,2002-09-01, -26,,order,1999-12-01, -26,,order,1997-04-01, -26,,order,1995-06-01, -26,,order,1995-03-01, -26,,order,1993-02-01, -26,,order,1993-01-01, -26,,order,1992-07-01, -26,,order,1992-05-01, -26,,order,1992-02-01, -26,,order,1991-12-01, -26,,order,1991-10-01, -26,,order,1991-05-01, -26,,order,1990-05-01, -26,,order,1989-06-01, -26,,order,1989-04-01, -26,,order,1988-11-01, -26,,order,1988-08-01, -26,,order,1987-12-01, +26,,order,2000-12-01, +26,,order,1996-12-01, +26,,order,1995-08-01, +26,,order,1993-08-01, +26,,order,1991-09-01, +26,,order,1991-07-01, +26,,order,1990-03-01, +26,,order,1987-08-01, 26,stopped,,,tramadol hydrochloride 50 MG Oral Tablet +26,stopped,,2022-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,,2022-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,,2022-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2021-11-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2021-09-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2021-01-01,amLODIPine 2.5 MG Oral Tablet @@ -2529,21 +3146,33 @@ cnt,status,intent,authoredon_month,medication_display 26,stopped,,2020-06-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2019-12-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,,2019-11-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,,2019-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2019-07-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,,2019-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,,2019-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2018-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,,2018-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,,2018-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2018-01-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,,2017-12-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,,2017-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2017-10-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2017-04-01,lisinopril 10 MG Oral Tablet +26,stopped,,2016-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2016-12-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,,2016-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2016-10-01,lisinopril 10 MG Oral Tablet 26,stopped,,2016-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,,2016-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2016-01-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2015-12-01,lisinopril 10 MG Oral Tablet 26,stopped,,2015-11-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,,2015-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,,2015-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2015-02-01,lisinopril 10 MG Oral Tablet 26,stopped,,2014-07-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2014-02-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,,2014-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,,2013-10-01,lisinopril 10 MG Oral Tablet 26,stopped,,2013-04-01,lisinopril 10 MG Oral Tablet 26,stopped,,2013-02-01,lisinopril 10 MG Oral Tablet @@ -2551,26 +3180,25 @@ cnt,status,intent,authoredon_month,medication_display 26,stopped,,2010-08-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,,2010-01-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,,2009-12-01,amLODIPine 2.5 MG Oral Tablet -26,stopped,,2002-09-01, -26,stopped,,2001-09-01, 26,stopped,,2000-10-01,lisinopril 10 MG Oral Tablet -26,stopped,,1999-12-01, -26,stopped,,1995-06-01, -26,stopped,,1995-03-01, -26,stopped,,1993-11-01, -26,stopped,,1993-03-01, -26,stopped,,1993-01-01, -26,stopped,,1992-06-01, -26,stopped,,1992-05-01, -26,stopped,,1992-02-01, -26,stopped,,1990-05-01, -26,stopped,,1990-04-01, -26,stopped,,1989-06-01, -26,stopped,,1989-04-01, -26,stopped,,1988-11-01, -26,stopped,,1988-08-01, -26,stopped,,1987-12-01, +26,stopped,,1999-04-01, +26,stopped,,1997-09-01, +26,stopped,,1995-04-01, +26,stopped,,1993-10-01, +26,stopped,,1992-04-01, +26,stopped,,1991-09-01, +26,stopped,,1991-08-01, +26,stopped,,1991-05-01, +26,stopped,,1990-12-01, +26,stopped,,1990-08-01, +26,stopped,,1989-10-01, +26,stopped,,1988-07-01, +26,stopped,,1987-08-01, +26,stopped,,1986-08-01, 26,stopped,order,,tramadol hydrochloride 50 MG Oral Tablet +26,stopped,order,2022-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,order,2022-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,order,2022-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2021-11-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2021-09-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2021-01-01,amLODIPine 2.5 MG Oral Tablet @@ -2584,21 +3212,33 @@ cnt,status,intent,authoredon_month,medication_display 26,stopped,order,2020-06-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2019-12-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,order,2019-11-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,order,2019-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2019-07-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,order,2019-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,order,2019-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2018-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,order,2018-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,order,2018-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2018-01-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,order,2017-12-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,order,2017-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2017-10-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2017-04-01,lisinopril 10 MG Oral Tablet +26,stopped,order,2016-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2016-12-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,order,2016-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2016-10-01,lisinopril 10 MG Oral Tablet 26,stopped,order,2016-04-01,Hydrochlorothiazide 25 MG Oral Tablet +26,stopped,order,2016-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2016-01-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2015-12-01,lisinopril 10 MG Oral Tablet 26,stopped,order,2015-11-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,order,2015-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +26,stopped,order,2015-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2015-02-01,lisinopril 10 MG Oral Tablet 26,stopped,order,2014-07-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2014-02-01,amLODIPine 2.5 MG Oral Tablet +26,stopped,order,2014-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 26,stopped,order,2013-10-01,lisinopril 10 MG Oral Tablet 26,stopped,order,2013-04-01,lisinopril 10 MG Oral Tablet 26,stopped,order,2013-02-01,lisinopril 10 MG Oral Tablet @@ -2606,25 +3246,21 @@ cnt,status,intent,authoredon_month,medication_display 26,stopped,order,2010-08-01,Hydrochlorothiazide 25 MG Oral Tablet 26,stopped,order,2010-01-01,amLODIPine 2.5 MG Oral Tablet 26,stopped,order,2009-12-01,amLODIPine 2.5 MG Oral Tablet -26,stopped,order,2002-09-01, -26,stopped,order,2001-09-01, 26,stopped,order,2000-10-01,lisinopril 10 MG Oral Tablet -26,stopped,order,1999-12-01, -26,stopped,order,1995-06-01, -26,stopped,order,1995-03-01, -26,stopped,order,1993-11-01, -26,stopped,order,1993-03-01, -26,stopped,order,1993-01-01, -26,stopped,order,1992-06-01, -26,stopped,order,1992-05-01, -26,stopped,order,1992-02-01, -26,stopped,order,1990-05-01, -26,stopped,order,1990-04-01, -26,stopped,order,1989-06-01, -26,stopped,order,1989-04-01, -26,stopped,order,1988-11-01, -26,stopped,order,1988-08-01, -26,stopped,order,1987-12-01, +26,stopped,order,1999-04-01, +26,stopped,order,1997-09-01, +26,stopped,order,1995-04-01, +26,stopped,order,1993-10-01, +26,stopped,order,1992-04-01, +26,stopped,order,1991-09-01, +26,stopped,order,1991-08-01, +26,stopped,order,1991-05-01, +26,stopped,order,1990-12-01, +26,stopped,order,1990-08-01, +26,stopped,order,1989-10-01, +26,stopped,order,1988-07-01, +26,stopped,order,1987-08-01, +26,stopped,order,1986-08-01, 26,active,,,tramadol hydrochloride 50 MG Oral Tablet 26,active,order,,tramadol hydrochloride 50 MG Oral Tablet 25,,,2022-12-01,lisinopril 10 MG Oral Tablet @@ -2632,25 +3268,36 @@ cnt,status,intent,authoredon_month,medication_display 25,,,2022-01-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2021-11-01,lisinopril 10 MG Oral Tablet 25,,,2021-11-01,amLODIPine 2.5 MG Oral Tablet +25,,,2020-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2020-06-01,amLODIPine 2.5 MG Oral Tablet 25,,,2020-05-01,amLODIPine 2.5 MG Oral Tablet 25,,,2020-05-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,,2019-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2018-09-01,lisinopril 10 MG Oral Tablet +25,,,2018-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,,,2018-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2018-04-01,amLODIPine 2.5 MG Oral Tablet 25,,,2017-09-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,,2017-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2017-06-01,lisinopril 10 MG Oral Tablet 25,,,2017-05-01,amLODIPine 2.5 MG Oral Tablet +25,,,2017-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2017-03-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2017-02-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,,2017-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2016-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2016-11-01,amLODIPine 2.5 MG Oral Tablet +25,,,2016-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2016-08-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2016-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2015-06-01,lisinopril 10 MG Oral Tablet +25,,,2015-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,,,2014-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2014-11-01,amLODIPine 2.5 MG Oral Tablet 25,,,2014-09-01,lisinopril 10 MG Oral Tablet 25,,,2014-07-01,amLODIPine 2.5 MG Oral Tablet 25,,,2014-05-01,amLODIPine 2.5 MG Oral Tablet +25,,,2013-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,,2013-05-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2012-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,,2012-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2659,43 +3306,53 @@ cnt,status,intent,authoredon_month,medication_display 25,,,2008-12-01,amLODIPine 2.5 MG Oral Tablet 25,,,2008-09-01,amLODIPine 2.5 MG Oral Tablet 25,,,2007-12-01,amLODIPine 2.5 MG Oral Tablet -25,,,2004-06-01, -25,,,2003-09-01, -25,,,2003-06-01, -25,,,2000-12-01, 25,,,2000-11-01,lisinopril 10 MG Oral Tablet -25,,,1999-04-01, -25,,,1997-09-01, -25,,,1995-11-01, -25,,,1995-04-01, -25,,,1989-05-01, -25,,,1989-01-01, -25,,,1988-05-01, -25,,,1986-05-01, +25,,,1995-09-01, +25,,,1994-11-01, +25,,,1993-04-01, +25,,,1991-04-01, +25,,,1990-11-01, +25,,,1989-08-01, +25,,,1988-04-01, +25,,,1987-05-01, +25,,,1986-04-01, +25,,,1985-08-01, +25,,,1984-11-01, 25,,order,2022-12-01,lisinopril 10 MG Oral Tablet 25,,order,2022-07-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2022-01-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2021-11-01,lisinopril 10 MG Oral Tablet 25,,order,2021-11-01,amLODIPine 2.5 MG Oral Tablet +25,,order,2020-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2020-06-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2020-05-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2020-05-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,order,2019-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2018-09-01,lisinopril 10 MG Oral Tablet +25,,order,2018-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,,order,2018-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2018-04-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2017-09-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,order,2017-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2017-06-01,lisinopril 10 MG Oral Tablet 25,,order,2017-05-01,amLODIPine 2.5 MG Oral Tablet +25,,order,2017-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2017-03-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2017-02-01,Hydrochlorothiazide 25 MG Oral Tablet +25,,order,2017-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2016-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2016-11-01,amLODIPine 2.5 MG Oral Tablet +25,,order,2016-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2016-08-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2016-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2015-06-01,lisinopril 10 MG Oral Tablet +25,,order,2015-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,,order,2014-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2014-11-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2014-09-01,lisinopril 10 MG Oral Tablet 25,,order,2014-07-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2014-05-01,amLODIPine 2.5 MG Oral Tablet +25,,order,2013-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,,order,2013-05-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2012-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,,order,2012-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2704,47 +3361,59 @@ cnt,status,intent,authoredon_month,medication_display 25,,order,2008-12-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2008-09-01,amLODIPine 2.5 MG Oral Tablet 25,,order,2007-12-01,amLODIPine 2.5 MG Oral Tablet -25,,order,2004-06-01, -25,,order,2003-09-01, -25,,order,2003-06-01, -25,,order,2000-12-01, 25,,order,2000-11-01,lisinopril 10 MG Oral Tablet -25,,order,1999-04-01, -25,,order,1997-09-01, -25,,order,1995-11-01, -25,,order,1995-04-01, -25,,order,1989-05-01, -25,,order,1989-01-01, -25,,order,1988-05-01, -25,,order,1986-05-01, +25,,order,1995-09-01, +25,,order,1994-11-01, +25,,order,1993-04-01, +25,,order,1991-04-01, +25,,order,1990-11-01, +25,,order,1989-08-01, +25,,order,1988-04-01, +25,,order,1987-05-01, +25,,order,1986-04-01, +25,,order,1985-08-01, +25,,order,1984-11-01, 25,stopped,,,12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule +25,stopped,,2023-03-01, +25,stopped,,2022-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2022-01-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2021-11-01,lisinopril 10 MG Oral Tablet 25,stopped,,2021-11-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2020-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2020-11-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,,2020-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,,2020-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2020-06-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2020-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2020-05-01,Hydrochlorothiazide 25 MG Oral Tablet +25,stopped,,2019-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2018-09-01,lisinopril 10 MG Oral Tablet +25,stopped,,2018-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,,2018-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2018-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2018-04-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2017-09-01,Hydrochlorothiazide 25 MG Oral Tablet +25,stopped,,2017-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2017-06-01,lisinopril 10 MG Oral Tablet 25,stopped,,2017-05-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,,2017-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2017-03-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2017-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2016-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2016-11-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,,2016-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2016-08-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2016-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2015-06-01,lisinopril 10 MG Oral Tablet +25,stopped,,2015-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,,2014-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2014-11-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2014-09-01,lisinopril 10 MG Oral Tablet 25,stopped,,2014-07-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2014-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2014-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 25,stopped,,2013-11-01,lisinopril 10 MG Oral Tablet +25,stopped,,2013-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,,2013-05-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,,2013-03-01,lisinopril 10 MG Oral Tablet 25,stopped,,2012-12-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2755,48 +3424,57 @@ cnt,status,intent,authoredon_month,medication_display 25,stopped,,2008-12-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2008-09-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,,2007-12-01,amLODIPine 2.5 MG Oral Tablet -25,stopped,,2004-06-01, -25,stopped,,2003-09-01, -25,stopped,,2003-06-01, +25,stopped,,2000-12-01, 25,stopped,,2000-11-01,lisinopril 10 MG Oral Tablet -25,stopped,,1997-04-01, -25,stopped,,1995-11-01, -25,stopped,,1993-02-01, -25,stopped,,1992-07-01, -25,stopped,,1991-12-01, -25,stopped,,1991-10-01, -25,stopped,,1989-05-01, -25,stopped,,1989-02-01, -25,stopped,,1988-05-01, -25,stopped,,1986-05-01, +25,stopped,,1995-09-01, +25,stopped,,1995-08-01, +25,stopped,,1993-04-01, +25,stopped,,1991-04-01, +25,stopped,,1989-08-01, +25,stopped,,1988-04-01, +25,stopped,,1986-06-01, +25,stopped,,1985-08-01, 25,stopped,order,,12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule +25,stopped,order,2023-03-01, +25,stopped,order,2022-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2022-01-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2021-11-01,lisinopril 10 MG Oral Tablet 25,stopped,order,2021-11-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2020-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2020-11-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,order,2020-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,order,2020-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2020-06-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2020-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2020-05-01,Hydrochlorothiazide 25 MG Oral Tablet +25,stopped,order,2019-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2018-09-01,lisinopril 10 MG Oral Tablet +25,stopped,order,2018-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,order,2018-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2018-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2018-04-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2017-09-01,Hydrochlorothiazide 25 MG Oral Tablet +25,stopped,order,2017-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2017-06-01,lisinopril 10 MG Oral Tablet 25,stopped,order,2017-05-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,order,2017-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2017-03-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2017-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2016-12-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2016-11-01,amLODIPine 2.5 MG Oral Tablet +25,stopped,order,2016-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2016-08-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2016-02-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2015-06-01,lisinopril 10 MG Oral Tablet +25,stopped,order,2015-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +25,stopped,order,2014-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2014-11-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2014-09-01,lisinopril 10 MG Oral Tablet 25,stopped,order,2014-07-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2014-05-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2014-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 25,stopped,order,2013-11-01,lisinopril 10 MG Oral Tablet +25,stopped,order,2013-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 25,stopped,order,2013-05-01,Hydrochlorothiazide 25 MG Oral Tablet 25,stopped,order,2013-03-01,lisinopril 10 MG Oral Tablet 25,stopped,order,2012-12-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2807,22 +3485,20 @@ cnt,status,intent,authoredon_month,medication_display 25,stopped,order,2008-12-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2008-09-01,amLODIPine 2.5 MG Oral Tablet 25,stopped,order,2007-12-01,amLODIPine 2.5 MG Oral Tablet -25,stopped,order,2004-06-01, -25,stopped,order,2003-09-01, -25,stopped,order,2003-06-01, +25,stopped,order,2000-12-01, 25,stopped,order,2000-11-01,lisinopril 10 MG Oral Tablet -25,stopped,order,1997-04-01, -25,stopped,order,1995-11-01, -25,stopped,order,1993-02-01, -25,stopped,order,1992-07-01, -25,stopped,order,1991-12-01, -25,stopped,order,1991-10-01, -25,stopped,order,1989-05-01, -25,stopped,order,1989-02-01, -25,stopped,order,1988-05-01, -25,stopped,order,1986-05-01, +25,stopped,order,1995-09-01, +25,stopped,order,1995-08-01, +25,stopped,order,1993-04-01, +25,stopped,order,1991-04-01, +25,stopped,order,1989-08-01, +25,stopped,order,1988-04-01, +25,stopped,order,1986-06-01, +25,stopped,order,1985-08-01, 25,active,,,Hydrocortisone 10 MG/ML Topical Cream 25,active,order,,Hydrocortisone 10 MG/ML Topical Cream +24,,,,Liletta 52 MG Intrauterine System +24,,,2022-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,,2021-10-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2020-04-01,amLODIPine 2.5 MG Oral Tablet 24,,,2020-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2832,13 +3508,19 @@ cnt,status,intent,authoredon_month,medication_display 24,,,2019-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2018-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2018-10-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,,2018-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,,2016-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,,2016-06-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2015-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2015-06-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,,2015-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,,2015-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,,2015-03-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2014-10-01,amLODIPine 2.5 MG Oral Tablet 24,,,2014-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2014-01-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,,2013-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,,2013-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,,2013-07-01,lisinopril 10 MG Oral Tablet 24,,,2012-01-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,,2011-08-01,lisinopril 10 MG Oral Tablet @@ -2854,24 +3536,16 @@ cnt,status,intent,authoredon_month,medication_display 24,,,2006-06-01,lisinopril 10 MG Oral Tablet 24,,,2006-03-01,lisinopril 10 MG Oral Tablet 24,,,2005-04-01,lisinopril 10 MG Oral Tablet -24,,,2003-01-01, 24,,,2000-06-01,lisinopril 10 MG Oral Tablet 24,,,1999-10-01,lisinopril 10 MG Oral Tablet 24,,,1997-10-01,lisinopril 10 MG Oral Tablet -24,,,1994-03-01, -24,,,1993-10-01, -24,,,1993-08-01, -24,,,1992-09-01, -24,,,1992-01-01, -24,,,1990-12-01, -24,,,1990-09-01, -24,,,1990-08-01, -24,,,1988-12-01, -24,,,1988-07-01, -24,,,1988-02-01, -24,,,1986-09-01, -24,,,1986-08-01, -24,,,1985-12-01, +24,,,1989-07-01, +24,,,1987-04-01, +24,,,1987-01-01, +24,,,1986-01-01, +24,,,1984-05-01, +24,,order,,Liletta 52 MG Intrauterine System +24,,order,2022-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,order,2021-10-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2020-04-01,amLODIPine 2.5 MG Oral Tablet 24,,order,2020-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2881,13 +3555,19 @@ cnt,status,intent,authoredon_month,medication_display 24,,order,2019-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2018-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2018-10-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,order,2018-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,order,2016-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,order,2016-06-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2015-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2015-06-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,order,2015-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,order,2015-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,order,2015-03-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2014-10-01,amLODIPine 2.5 MG Oral Tablet 24,,order,2014-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2014-01-01,Hydrochlorothiazide 25 MG Oral Tablet +24,,order,2013-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,,order,2013-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,,order,2013-07-01,lisinopril 10 MG Oral Tablet 24,,order,2012-01-01,Hydrochlorothiazide 25 MG Oral Tablet 24,,order,2011-08-01,lisinopril 10 MG Oral Tablet @@ -2903,25 +3583,17 @@ cnt,status,intent,authoredon_month,medication_display 24,,order,2006-06-01,lisinopril 10 MG Oral Tablet 24,,order,2006-03-01,lisinopril 10 MG Oral Tablet 24,,order,2005-04-01,lisinopril 10 MG Oral Tablet -24,,order,2003-01-01, 24,,order,2000-06-01,lisinopril 10 MG Oral Tablet 24,,order,1999-10-01,lisinopril 10 MG Oral Tablet 24,,order,1997-10-01,lisinopril 10 MG Oral Tablet -24,,order,1994-03-01, -24,,order,1993-10-01, -24,,order,1993-08-01, -24,,order,1992-09-01, -24,,order,1992-01-01, -24,,order,1990-12-01, -24,,order,1990-09-01, -24,,order,1990-08-01, -24,,order,1988-12-01, -24,,order,1988-07-01, -24,,order,1988-02-01, -24,,order,1986-09-01, -24,,order,1986-08-01, -24,,order,1985-12-01, +24,,order,1989-07-01, +24,,order,1987-04-01, +24,,order,1987-01-01, +24,,order,1986-01-01, +24,,order,1984-05-01, +24,stopped,,,Liletta 52 MG Intrauterine System 24,stopped,,,Furosemide 40 MG Oral Tablet +24,stopped,,2023-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,,2021-10-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2020-04-01,amLODIPine 2.5 MG Oral Tablet 24,stopped,,2020-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2931,13 +3603,18 @@ cnt,status,intent,authoredon_month,medication_display 24,stopped,,2019-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2018-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2018-10-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,,2017-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,stopped,,2016-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,,2016-06-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2015-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2015-06-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,,2015-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,stopped,,2015-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,,2015-03-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2014-10-01,amLODIPine 2.5 MG Oral Tablet 24,stopped,,2014-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2014-01-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,,2013-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,,2013-07-01,lisinopril 10 MG Oral Tablet 24,stopped,,2012-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,,2011-08-01,lisinopril 10 MG Oral Tablet @@ -2953,23 +3630,21 @@ cnt,status,intent,authoredon_month,medication_display 24,stopped,,2006-06-01,lisinopril 10 MG Oral Tablet 24,stopped,,2006-03-01,lisinopril 10 MG Oral Tablet 24,stopped,,2005-04-01,lisinopril 10 MG Oral Tablet -24,stopped,,2000-12-01, 24,stopped,,2000-06-01,lisinopril 10 MG Oral Tablet 24,stopped,,1999-10-01,lisinopril 10 MG Oral Tablet -24,stopped,,1999-04-01, 24,stopped,,1997-10-01,lisinopril 10 MG Oral Tablet -24,stopped,,1997-09-01, -24,stopped,,1995-04-01, -24,stopped,,1994-03-01, -24,stopped,,1992-09-01, -24,stopped,,1992-01-01, -24,stopped,,1991-05-01, -24,stopped,,1990-09-01, -24,stopped,,1989-01-01, -24,stopped,,1988-12-01, -24,stopped,,1986-09-01, -24,stopped,,1985-12-01, +24,stopped,,1996-12-01, +24,stopped,,1991-07-01, +24,stopped,,1990-11-01, +24,stopped,,1990-03-01, +24,stopped,,1987-05-01, +24,stopped,,1987-01-01, +24,stopped,,1986-01-01, +24,stopped,,1984-11-01, +24,stopped,,1984-05-01, +24,stopped,order,,Liletta 52 MG Intrauterine System 24,stopped,order,,Furosemide 40 MG Oral Tablet +24,stopped,order,2023-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,order,2021-10-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2020-04-01,amLODIPine 2.5 MG Oral Tablet 24,stopped,order,2020-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -2979,13 +3654,18 @@ cnt,status,intent,authoredon_month,medication_display 24,stopped,order,2019-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2018-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2018-10-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,order,2017-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,stopped,order,2016-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,order,2016-06-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2015-11-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2015-06-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,order,2015-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +24,stopped,order,2015-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,order,2015-03-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2014-10-01,amLODIPine 2.5 MG Oral Tablet 24,stopped,order,2014-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2014-01-01,Hydrochlorothiazide 25 MG Oral Tablet +24,stopped,order,2013-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 24,stopped,order,2013-07-01,lisinopril 10 MG Oral Tablet 24,stopped,order,2012-05-01,Hydrochlorothiazide 25 MG Oral Tablet 24,stopped,order,2011-08-01,lisinopril 10 MG Oral Tablet @@ -3001,40 +3681,44 @@ cnt,status,intent,authoredon_month,medication_display 24,stopped,order,2006-06-01,lisinopril 10 MG Oral Tablet 24,stopped,order,2006-03-01,lisinopril 10 MG Oral Tablet 24,stopped,order,2005-04-01,lisinopril 10 MG Oral Tablet -24,stopped,order,2000-12-01, 24,stopped,order,2000-06-01,lisinopril 10 MG Oral Tablet 24,stopped,order,1999-10-01,lisinopril 10 MG Oral Tablet -24,stopped,order,1999-04-01, 24,stopped,order,1997-10-01,lisinopril 10 MG Oral Tablet -24,stopped,order,1997-09-01, -24,stopped,order,1995-04-01, -24,stopped,order,1994-03-01, -24,stopped,order,1992-09-01, -24,stopped,order,1992-01-01, -24,stopped,order,1991-05-01, -24,stopped,order,1990-09-01, -24,stopped,order,1989-01-01, -24,stopped,order,1988-12-01, -24,stopped,order,1986-09-01, -24,stopped,order,1985-12-01, +24,stopped,order,1996-12-01, +24,stopped,order,1991-07-01, +24,stopped,order,1990-11-01, +24,stopped,order,1990-03-01, +24,stopped,order,1987-05-01, +24,stopped,order,1987-01-01, +24,stopped,order,1986-01-01, +24,stopped,order,1984-11-01, +24,stopped,order,1984-05-01, 23,,,,Amoxicillin 250 MG Oral Capsule +23,,,2022-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2022-01-01,amLODIPine 2.5 MG Oral Tablet 23,,,2020-08-01,amLODIPine 2.5 MG Oral Tablet 23,,,2019-12-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,,2019-09-01,amLODIPine 2.5 MG Oral Tablet 23,,,2018-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,,2018-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2018-06-01,amLODIPine 2.5 MG Oral Tablet 23,,,2018-01-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,,2017-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2017-08-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,,2017-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +23,,,2017-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2016-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,,2016-06-01,amLODIPine 2.5 MG Oral Tablet +23,,,2016-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2016-02-01,amLODIPine 2.5 MG Oral Tablet 23,,,2015-08-01,lisinopril 10 MG Oral Tablet 23,,,2015-08-01,amLODIPine 2.5 MG Oral Tablet +23,,,2015-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2015-03-01,amLODIPine 2.5 MG Oral Tablet 23,,,2015-02-01,amLODIPine 2.5 MG Oral Tablet 23,,,2014-10-01,lisinopril 10 MG Oral Tablet 23,,,2014-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,,2014-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2014-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 23,,,2013-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,,2012-07-01,lisinopril 10 MG Oral Tablet @@ -3045,11 +3729,13 @@ cnt,status,intent,authoredon_month,medication_display 23,,,2011-09-01,amLODIPine 2.5 MG Oral Tablet 23,,,2011-05-01,lisinopril 10 MG Oral Tablet 23,,,2011-04-01,lisinopril 10 MG Oral Tablet +23,,,2010-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2010-12-01,amLODIPine 2.5 MG Oral Tablet 23,,,2010-05-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,,2009-10-01,amLODIPine 2.5 MG Oral Tablet 23,,,2009-05-01,lisinopril 10 MG Oral Tablet 23,,,2008-09-01,lisinopril 10 MG Oral Tablet +23,,,2008-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,,2008-01-01,lisinopril 10 MG Oral Tablet 23,,,2006-11-01,lisinopril 10 MG Oral Tablet 23,,,2005-07-01,amLODIPine 2.5 MG Oral Tablet @@ -3057,38 +3743,42 @@ cnt,status,intent,authoredon_month,medication_display 23,,,2002-12-01,lisinopril 10 MG Oral Tablet 23,,,2001-11-01,lisinopril 10 MG Oral Tablet 23,,,1998-10-01,lisinopril 10 MG Oral Tablet -23,,,1996-12-01, -23,,,1995-09-01, -23,,,1995-08-01, -23,,,1994-10-01, -23,,,1994-09-01, -23,,,1992-11-01, -23,,,1992-10-01, -23,,,1992-08-01, -23,,,1992-04-01, -23,,,1991-08-01, -23,,,1990-10-01, -23,,,1990-07-01, -23,,,1989-08-01, -23,,,1986-06-01, +23,,,1994-12-01, +23,,,1991-11-01, +23,,,1989-09-01, +23,,,1988-10-01, +23,,,1988-09-01, +23,,,1987-09-01, +23,,,1987-06-01, +23,,,1986-07-01, +23,,,1984-12-01, +23,,,1983-05-01, 23,,order,,Amoxicillin 250 MG Oral Capsule +23,,order,2022-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2022-01-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2020-08-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2019-12-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,order,2019-09-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2018-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,order,2018-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2018-06-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2018-01-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,order,2017-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2017-08-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,order,2017-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +23,,order,2017-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2016-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,order,2016-06-01,amLODIPine 2.5 MG Oral Tablet +23,,order,2016-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2016-02-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2015-08-01,lisinopril 10 MG Oral Tablet 23,,order,2015-08-01,amLODIPine 2.5 MG Oral Tablet +23,,order,2015-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2015-03-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2015-02-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2014-10-01,lisinopril 10 MG Oral Tablet 23,,order,2014-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,,order,2014-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2014-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 23,,order,2013-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,order,2012-07-01,lisinopril 10 MG Oral Tablet @@ -3099,11 +3789,13 @@ cnt,status,intent,authoredon_month,medication_display 23,,order,2011-09-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2011-05-01,lisinopril 10 MG Oral Tablet 23,,order,2011-04-01,lisinopril 10 MG Oral Tablet +23,,order,2010-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2010-12-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2010-05-01,Hydrochlorothiazide 25 MG Oral Tablet 23,,order,2009-10-01,amLODIPine 2.5 MG Oral Tablet 23,,order,2009-05-01,lisinopril 10 MG Oral Tablet 23,,order,2008-09-01,lisinopril 10 MG Oral Tablet +23,,order,2008-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,,order,2008-01-01,lisinopril 10 MG Oral Tablet 23,,order,2006-11-01,lisinopril 10 MG Oral Tablet 23,,order,2005-07-01,amLODIPine 2.5 MG Oral Tablet @@ -3111,40 +3803,46 @@ cnt,status,intent,authoredon_month,medication_display 23,,order,2002-12-01,lisinopril 10 MG Oral Tablet 23,,order,2001-11-01,lisinopril 10 MG Oral Tablet 23,,order,1998-10-01,lisinopril 10 MG Oral Tablet -23,,order,1996-12-01, -23,,order,1995-09-01, -23,,order,1995-08-01, -23,,order,1994-10-01, -23,,order,1994-09-01, -23,,order,1992-11-01, -23,,order,1992-10-01, -23,,order,1992-08-01, -23,,order,1992-04-01, -23,,order,1991-08-01, -23,,order,1990-10-01, -23,,order,1990-07-01, -23,,order,1989-08-01, -23,,order,1986-06-01, +23,,order,1994-12-01, +23,,order,1991-11-01, +23,,order,1989-09-01, +23,,order,1988-10-01, +23,,order,1988-09-01, +23,,order,1987-09-01, +23,,order,1987-06-01, +23,,order,1986-07-01, +23,,order,1984-12-01, +23,,order,1983-05-01, 23,stopped,,,Amoxicillin 250 MG Oral Capsule +23,stopped,,2022-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2022-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2022-04-01,lisinopril 10 MG Oral Tablet +23,stopped,,2022-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2022-01-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2019-12-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2019-09-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2018-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2018-06-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,,2018-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2018-01-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,,2017-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2017-08-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,,2017-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +23,stopped,,2017-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2016-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2016-06-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,,2016-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2016-02-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2015-08-01,lisinopril 10 MG Oral Tablet 23,stopped,,2015-08-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,,2015-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2015-03-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2015-02-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2014-10-01,lisinopril 10 MG Oral Tablet 23,stopped,,2014-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,,2014-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2014-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +23,stopped,,2013-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2013-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2012-07-01,lisinopril 10 MG Oral Tablet 23,stopped,,2012-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3154,11 +3852,13 @@ cnt,status,intent,authoredon_month,medication_display 23,stopped,,2011-09-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2011-05-01,lisinopril 10 MG Oral Tablet 23,stopped,,2011-04-01,lisinopril 10 MG Oral Tablet +23,stopped,,2010-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2010-12-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2010-05-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,,2009-10-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,,2009-05-01,lisinopril 10 MG Oral Tablet 23,stopped,,2008-09-01,lisinopril 10 MG Oral Tablet +23,stopped,,2008-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,,2008-01-01,lisinopril 10 MG Oral Tablet 23,stopped,,2006-11-01,lisinopril 10 MG Oral Tablet 23,stopped,,2005-07-01,amLODIPine 2.5 MG Oral Tablet @@ -3166,39 +3866,46 @@ cnt,status,intent,authoredon_month,medication_display 23,stopped,,2002-12-01,lisinopril 10 MG Oral Tablet 23,stopped,,2001-11-01,lisinopril 10 MG Oral Tablet 23,stopped,,1998-10-01,lisinopril 10 MG Oral Tablet -23,stopped,,1995-09-01, -23,stopped,,1994-09-01, -23,stopped,,1993-10-01, -23,stopped,,1992-10-01, -23,stopped,,1992-08-01, -23,stopped,,1991-08-01, -23,stopped,,1990-12-01, -23,stopped,,1990-10-01, -23,stopped,,1990-08-01, -23,stopped,,1990-07-01, -23,stopped,,1989-08-01, -23,stopped,,1988-07-01, -23,stopped,,1988-02-01, +23,stopped,,1994-12-01, +23,stopped,,1994-11-01, +23,stopped,,1993-08-01, +23,stopped,,1991-11-01, +23,stopped,,1989-09-01, +23,stopped,,1989-07-01, +23,stopped,,1988-10-01, +23,stopped,,1987-04-01, +23,stopped,,1986-04-01, +23,stopped,,1984-12-01, 23,stopped,order,,Amoxicillin 250 MG Oral Capsule +23,stopped,order,2022-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2022-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2022-04-01,lisinopril 10 MG Oral Tablet +23,stopped,order,2022-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2022-01-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2019-12-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2019-09-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2018-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2018-06-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,order,2018-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2018-01-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,order,2017-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2017-08-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,order,2017-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +23,stopped,order,2017-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2016-09-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2016-06-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,order,2016-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2016-02-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2015-08-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2015-08-01,amLODIPine 2.5 MG Oral Tablet +23,stopped,order,2015-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2015-03-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2015-02-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2014-10-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2014-09-01,Hydrochlorothiazide 25 MG Oral Tablet +23,stopped,order,2014-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2014-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +23,stopped,order,2013-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2013-07-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2012-07-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2012-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3208,11 +3915,13 @@ cnt,status,intent,authoredon_month,medication_display 23,stopped,order,2011-09-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2011-05-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2011-04-01,lisinopril 10 MG Oral Tablet +23,stopped,order,2010-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2010-12-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2010-05-01,Hydrochlorothiazide 25 MG Oral Tablet 23,stopped,order,2009-10-01,amLODIPine 2.5 MG Oral Tablet 23,stopped,order,2009-05-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2008-09-01,lisinopril 10 MG Oral Tablet +23,stopped,order,2008-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 23,stopped,order,2008-01-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2006-11-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2005-07-01,amLODIPine 2.5 MG Oral Tablet @@ -3220,19 +3929,16 @@ cnt,status,intent,authoredon_month,medication_display 23,stopped,order,2002-12-01,lisinopril 10 MG Oral Tablet 23,stopped,order,2001-11-01,lisinopril 10 MG Oral Tablet 23,stopped,order,1998-10-01,lisinopril 10 MG Oral Tablet -23,stopped,order,1995-09-01, -23,stopped,order,1994-09-01, -23,stopped,order,1993-10-01, -23,stopped,order,1992-10-01, -23,stopped,order,1992-08-01, -23,stopped,order,1991-08-01, -23,stopped,order,1990-12-01, -23,stopped,order,1990-10-01, -23,stopped,order,1990-08-01, -23,stopped,order,1990-07-01, -23,stopped,order,1989-08-01, -23,stopped,order,1988-07-01, -23,stopped,order,1988-02-01, +23,stopped,order,1994-12-01, +23,stopped,order,1994-11-01, +23,stopped,order,1993-08-01, +23,stopped,order,1991-11-01, +23,stopped,order,1989-09-01, +23,stopped,order,1989-07-01, +23,stopped,order,1988-10-01, +23,stopped,order,1987-04-01, +23,stopped,order,1986-04-01, +23,stopped,order,1984-12-01, 22,,,,albuterol 0.83 MG/ML Inhalation Solution 22,,,2023-01-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2022-08-01,lisinopril 10 MG Oral Tablet @@ -3245,21 +3951,30 @@ cnt,status,intent,authoredon_month,medication_display 22,,,2017-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2016-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2016-10-01,amLODIPine 2.5 MG Oral Tablet +22,,,2016-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2015-12-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2015-10-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2014-11-01,Hydrochlorothiazide 25 MG Oral Tablet +22,,,2014-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2014-06-01,lisinopril 10 MG Oral Tablet 22,,,2014-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,,2013-12-01,amLODIPine 2.5 MG Oral Tablet +22,,,2013-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,,,2012-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2012-10-01,lisinopril 10 MG Oral Tablet 22,,,2012-08-01,lisinopril 10 MG Oral Tablet +22,,,2012-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2011-12-01,amLODIPine 2.5 MG Oral Tablet 22,,,2011-11-01,amLODIPine 2.5 MG Oral Tablet +22,,,2011-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2011-03-01,lisinopril 10 MG Oral Tablet 22,,,2011-03-01,Hydrochlorothiazide 25 MG Oral Tablet +22,,,2010-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2010-09-01,lisinopril 10 MG Oral Tablet 22,,,2010-08-01,amLODIPine 2.5 MG Oral Tablet 22,,,2010-02-01,lisinopril 10 MG Oral Tablet +22,,,2009-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,,,2009-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,,2009-09-01,lisinopril 10 MG Oral Tablet 22,,,2009-08-01,amLODIPine 2.5 MG Oral Tablet 22,,,2009-04-01,amLODIPine 2.5 MG Oral Tablet @@ -3268,14 +3983,17 @@ cnt,status,intent,authoredon_month,medication_display 22,,,2006-12-01,amLODIPine 2.5 MG Oral Tablet 22,,,2005-12-01,lisinopril 10 MG Oral Tablet 22,,,2005-07-01,lisinopril 10 MG Oral Tablet -22,,,1994-12-01, -22,,,1994-11-01, -22,,,1993-04-01, -22,,,1991-09-01, -22,,,1991-04-01, -22,,,1988-04-01, -22,,,1987-01-01, -22,,,1986-04-01, +22,,,1996-04-01, +22,,,1994-04-01, +22,,,1992-03-01, +22,,,1986-11-01, +22,,,1985-05-01, +22,,,1984-08-01, +22,,,1983-12-01, +22,,,1983-07-01, +22,,,1983-06-01, +22,,,1982-03-01, +22,,,1980-11-01, 22,,order,,albuterol 0.83 MG/ML Inhalation Solution 22,,order,2023-01-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2022-08-01,lisinopril 10 MG Oral Tablet @@ -3288,21 +4006,30 @@ cnt,status,intent,authoredon_month,medication_display 22,,order,2017-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2016-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2016-10-01,amLODIPine 2.5 MG Oral Tablet +22,,order,2016-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2015-12-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2015-10-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2014-11-01,Hydrochlorothiazide 25 MG Oral Tablet +22,,order,2014-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2014-06-01,lisinopril 10 MG Oral Tablet 22,,order,2014-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,,order,2013-12-01,amLODIPine 2.5 MG Oral Tablet +22,,order,2013-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,,order,2012-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2012-10-01,lisinopril 10 MG Oral Tablet 22,,order,2012-08-01,lisinopril 10 MG Oral Tablet +22,,order,2012-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2011-12-01,amLODIPine 2.5 MG Oral Tablet 22,,order,2011-11-01,amLODIPine 2.5 MG Oral Tablet +22,,order,2011-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2011-03-01,lisinopril 10 MG Oral Tablet 22,,order,2011-03-01,Hydrochlorothiazide 25 MG Oral Tablet +22,,order,2010-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2010-09-01,lisinopril 10 MG Oral Tablet 22,,order,2010-08-01,amLODIPine 2.5 MG Oral Tablet 22,,order,2010-02-01,lisinopril 10 MG Oral Tablet +22,,order,2009-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,,order,2009-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,,order,2009-09-01,lisinopril 10 MG Oral Tablet 22,,order,2009-08-01,amLODIPine 2.5 MG Oral Tablet 22,,order,2009-04-01,amLODIPine 2.5 MG Oral Tablet @@ -3311,40 +4038,54 @@ cnt,status,intent,authoredon_month,medication_display 22,,order,2006-12-01,amLODIPine 2.5 MG Oral Tablet 22,,order,2005-12-01,lisinopril 10 MG Oral Tablet 22,,order,2005-07-01,lisinopril 10 MG Oral Tablet -22,,order,1994-12-01, -22,,order,1994-11-01, -22,,order,1993-04-01, -22,,order,1991-09-01, -22,,order,1991-04-01, -22,,order,1988-04-01, -22,,order,1987-01-01, -22,,order,1986-04-01, +22,,order,1996-04-01, +22,,order,1994-04-01, +22,,order,1992-03-01, +22,,order,1986-11-01, +22,,order,1985-05-01, +22,,order,1984-08-01, +22,,order,1983-12-01, +22,,order,1983-07-01, +22,,order,1983-06-01, +22,,order,1982-03-01, +22,,order,1980-11-01, +22,stopped,,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2022-07-01,lisinopril 10 MG Oral Tablet 22,stopped,,2022-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2020-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2020-07-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2019-06-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2018-07-01,lisinopril 10 MG Oral Tablet +22,stopped,,2018-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2017-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2017-07-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2016-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2016-10-01,amLODIPine 2.5 MG Oral Tablet +22,stopped,,2016-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2015-12-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2015-10-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2014-11-01,Hydrochlorothiazide 25 MG Oral Tablet +22,stopped,,2014-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2014-06-01,lisinopril 10 MG Oral Tablet 22,stopped,,2014-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,,2013-12-01,amLODIPine 2.5 MG Oral Tablet +22,stopped,,2013-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,stopped,,2012-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2012-10-01,lisinopril 10 MG Oral Tablet 22,stopped,,2012-08-01,lisinopril 10 MG Oral Tablet +22,stopped,,2012-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2011-12-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2011-11-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2011-10-01,lisinopril 10 MG Oral Tablet +22,stopped,,2011-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2011-03-01,lisinopril 10 MG Oral Tablet 22,stopped,,2011-03-01,Hydrochlorothiazide 25 MG Oral Tablet +22,stopped,,2010-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2010-09-01,lisinopril 10 MG Oral Tablet 22,stopped,,2010-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2010-02-01,lisinopril 10 MG Oral Tablet +22,stopped,,2009-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,stopped,,2009-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,,2009-09-01,lisinopril 10 MG Oral Tablet 22,stopped,,2009-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2009-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3352,45 +4093,56 @@ cnt,status,intent,authoredon_month,medication_display 22,stopped,,2006-12-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,,2005-12-01,lisinopril 10 MG Oral Tablet 22,stopped,,2005-07-01,lisinopril 10 MG Oral Tablet -22,stopped,,2003-01-01, -22,stopped,,1996-12-01, -22,stopped,,1995-08-01, -22,stopped,,1994-12-01, -22,stopped,,1994-10-01, -22,stopped,,1993-04-01, -22,stopped,,1992-04-01, -22,stopped,,1991-09-01, -22,stopped,,1991-04-01, -22,stopped,,1988-04-01, -22,stopped,,1987-01-01, -22,stopped,,1986-08-01, -22,stopped,,1986-06-01, +22,stopped,,1996-04-01, +22,stopped,,1994-04-01, +22,stopped,,1992-03-01, +22,stopped,,1988-09-01, +22,stopped,,1987-09-01, +22,stopped,,1987-06-01, +22,stopped,,1986-07-01, +22,stopped,,1985-05-01, +22,stopped,,1984-08-01, +22,stopped,,1983-12-01, +22,stopped,,1983-05-01, +22,stopped,,1982-03-01, +22,stopped,,1980-11-01, +22,stopped,order,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2022-07-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2022-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2020-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2020-07-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2019-06-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2018-07-01,lisinopril 10 MG Oral Tablet +22,stopped,order,2018-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2017-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2017-07-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2016-11-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2016-10-01,amLODIPine 2.5 MG Oral Tablet +22,stopped,order,2016-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2015-12-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2015-10-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2014-11-01,Hydrochlorothiazide 25 MG Oral Tablet +22,stopped,order,2014-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2014-06-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2014-06-01,Hydrochlorothiazide 25 MG Oral Tablet 22,stopped,order,2013-12-01,amLODIPine 2.5 MG Oral Tablet +22,stopped,order,2013-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,stopped,order,2012-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2012-10-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2012-08-01,lisinopril 10 MG Oral Tablet +22,stopped,order,2012-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2011-12-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2011-11-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2011-10-01,lisinopril 10 MG Oral Tablet +22,stopped,order,2011-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2011-03-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2011-03-01,Hydrochlorothiazide 25 MG Oral Tablet +22,stopped,order,2010-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2010-09-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2010-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2010-02-01,lisinopril 10 MG Oral Tablet +22,stopped,order,2009-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +22,stopped,order,2009-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 22,stopped,order,2009-09-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2009-08-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2009-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3398,20 +4150,22 @@ cnt,status,intent,authoredon_month,medication_display 22,stopped,order,2006-12-01,amLODIPine 2.5 MG Oral Tablet 22,stopped,order,2005-12-01,lisinopril 10 MG Oral Tablet 22,stopped,order,2005-07-01,lisinopril 10 MG Oral Tablet -22,stopped,order,2003-01-01, -22,stopped,order,1996-12-01, -22,stopped,order,1995-08-01, -22,stopped,order,1994-12-01, -22,stopped,order,1994-10-01, -22,stopped,order,1993-04-01, -22,stopped,order,1992-04-01, -22,stopped,order,1991-09-01, -22,stopped,order,1991-04-01, -22,stopped,order,1988-04-01, -22,stopped,order,1987-01-01, -22,stopped,order,1986-08-01, -22,stopped,order,1986-06-01, +22,stopped,order,1996-04-01, +22,stopped,order,1994-04-01, +22,stopped,order,1992-03-01, +22,stopped,order,1988-09-01, +22,stopped,order,1987-09-01, +22,stopped,order,1987-06-01, +22,stopped,order,1986-07-01, +22,stopped,order,1985-05-01, +22,stopped,order,1984-08-01, +22,stopped,order,1983-12-01, +22,stopped,order,1983-05-01, +22,stopped,order,1982-03-01, +22,stopped,order,1980-11-01, 21,,,,aspirin 325 MG Oral Tablet +21,,,,Galantamine 4 MG Oral Tablet +21,,,,168 HR Ethinyl Estradiol 0.00146 MG/HR / norelgestromin 0.00625 MG/HR Transdermal System 21,,,2020-07-01,lisinopril 10 MG Oral Tablet 21,,,2018-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2018-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3421,8 +4175,10 @@ cnt,status,intent,authoredon_month,medication_display 21,,,2016-10-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2016-07-01,lisinopril 10 MG Oral Tablet 21,,,2016-04-01,amLODIPine 2.5 MG Oral Tablet +21,,,2015-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,,2015-10-01,amLODIPine 2.5 MG Oral Tablet 21,,,2015-09-01,amLODIPine 2.5 MG Oral Tablet +21,,,2015-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,,2015-06-01,amLODIPine 2.5 MG Oral Tablet 21,,,2015-05-01,amLODIPine 2.5 MG Oral Tablet 21,,,2015-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3436,6 +4192,7 @@ cnt,status,intent,authoredon_month,medication_display 21,,,2012-06-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2012-04-01,amLODIPine 2.5 MG Oral Tablet 21,,,2012-02-01,Hydrochlorothiazide 25 MG Oral Tablet +21,,,2012-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,,2011-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2011-08-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2011-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3448,6 +4205,7 @@ cnt,status,intent,authoredon_month,medication_display 21,,,2009-06-01,lisinopril 10 MG Oral Tablet 21,,,2009-05-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2009-03-01,amLODIPine 2.5 MG Oral Tablet +21,,,2009-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,,2009-02-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,2007-09-01,lisinopril 10 MG Oral Tablet 21,,,2006-07-01,lisinopril 10 MG Oral Tablet @@ -3466,18 +4224,20 @@ cnt,status,intent,authoredon_month,medication_display 21,,,1997-03-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,,1994-05-01,lisinopril 10 MG Oral Tablet 21,,,1993-09-01,lisinopril 10 MG Oral Tablet -21,,,1991-07-01, -21,,,1989-10-01, -21,,,1989-09-01, -21,,,1988-10-01, -21,,,1988-01-01, -21,,,1987-08-01, -21,,,1987-05-01, -21,,,1985-08-01, -21,,,1984-11-01, -21,,,1983-05-01, -21,,,1980-11-01, +21,,,1992-12-01, +21,,,1987-10-01, +21,,,1986-10-01, +21,,,1986-02-01, +21,,,1985-09-01, +21,,,1985-01-01, +21,,,1984-09-01, +21,,,1983-11-01, +21,,,1982-12-01, +21,,,1982-05-01, +21,,,1980-04-01, 21,,order,,aspirin 325 MG Oral Tablet +21,,order,,Galantamine 4 MG Oral Tablet +21,,order,,168 HR Ethinyl Estradiol 0.00146 MG/HR / norelgestromin 0.00625 MG/HR Transdermal System 21,,order,2020-07-01,lisinopril 10 MG Oral Tablet 21,,order,2018-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2018-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3487,8 +4247,10 @@ cnt,status,intent,authoredon_month,medication_display 21,,order,2016-10-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2016-07-01,lisinopril 10 MG Oral Tablet 21,,order,2016-04-01,amLODIPine 2.5 MG Oral Tablet +21,,order,2015-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,order,2015-10-01,amLODIPine 2.5 MG Oral Tablet 21,,order,2015-09-01,amLODIPine 2.5 MG Oral Tablet +21,,order,2015-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,order,2015-06-01,amLODIPine 2.5 MG Oral Tablet 21,,order,2015-05-01,amLODIPine 2.5 MG Oral Tablet 21,,order,2015-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3502,6 +4264,7 @@ cnt,status,intent,authoredon_month,medication_display 21,,order,2012-06-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2012-04-01,amLODIPine 2.5 MG Oral Tablet 21,,order,2012-02-01,Hydrochlorothiazide 25 MG Oral Tablet +21,,order,2012-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,order,2011-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2011-08-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2011-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3514,6 +4277,7 @@ cnt,status,intent,authoredon_month,medication_display 21,,order,2009-06-01,lisinopril 10 MG Oral Tablet 21,,order,2009-05-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2009-03-01,amLODIPine 2.5 MG Oral Tablet +21,,order,2009-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,,order,2009-02-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,2007-09-01,lisinopril 10 MG Oral Tablet 21,,order,2006-07-01,lisinopril 10 MG Oral Tablet @@ -3532,17 +4296,17 @@ cnt,status,intent,authoredon_month,medication_display 21,,order,1997-03-01,Hydrochlorothiazide 25 MG Oral Tablet 21,,order,1994-05-01,lisinopril 10 MG Oral Tablet 21,,order,1993-09-01,lisinopril 10 MG Oral Tablet -21,,order,1991-07-01, -21,,order,1989-10-01, -21,,order,1989-09-01, -21,,order,1988-10-01, -21,,order,1988-01-01, -21,,order,1987-08-01, -21,,order,1987-05-01, -21,,order,1985-08-01, -21,,order,1984-11-01, -21,,order,1983-05-01, -21,,order,1980-11-01, +21,,order,1992-12-01, +21,,order,1987-10-01, +21,,order,1986-10-01, +21,,order,1986-02-01, +21,,order,1985-09-01, +21,,order,1985-01-01, +21,,order,1984-09-01, +21,,order,1983-11-01, +21,,order,1982-12-01, +21,,order,1982-05-01, +21,,order,1980-04-01, 21,stopped,,,aspirin 325 MG Oral Tablet 21,stopped,,,albuterol 0.83 MG/ML Inhalation Solution 21,stopped,,2022-06-01,lisinopril 10 MG Oral Tablet @@ -3556,8 +4320,10 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,,2016-10-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,,2016-07-01,lisinopril 10 MG Oral Tablet 21,stopped,,2016-04-01,amLODIPine 2.5 MG Oral Tablet +21,stopped,,2015-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,,2015-10-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,,2015-09-01,amLODIPine 2.5 MG Oral Tablet +21,stopped,,2015-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,,2015-06-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,,2015-05-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,,2015-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3570,6 +4336,7 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,,2012-06-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,,2012-04-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,,2012-02-01,Hydrochlorothiazide 25 MG Oral Tablet +21,stopped,,2012-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,,2011-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,,2011-08-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,,2011-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3593,18 +4360,17 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,,1997-11-01,lisinopril 10 MG Oral Tablet 21,stopped,,1997-06-01,lisinopril 10 MG Oral Tablet 21,stopped,,1997-03-01,Hydrochlorothiazide 25 MG Oral Tablet -21,stopped,,1994-11-01, 21,stopped,,1994-05-01,lisinopril 10 MG Oral Tablet -21,stopped,,1993-08-01, -21,stopped,,1992-11-01, -21,stopped,,1989-10-01, -21,stopped,,1989-09-01, -21,stopped,,1988-10-01, -21,stopped,,1988-01-01, -21,stopped,,1987-08-01, -21,stopped,,1986-04-01, -21,stopped,,1985-08-01, -21,stopped,,1980-11-01, +21,stopped,,1992-12-01, +21,stopped,,1987-10-01, +21,stopped,,1986-02-01, +21,stopped,,1985-09-01, +21,stopped,,1984-09-01, +21,stopped,,1983-11-01, +21,stopped,,1983-07-01, +21,stopped,,1983-06-01, +21,stopped,,1982-12-01, +21,stopped,,1980-04-01, 21,stopped,order,,aspirin 325 MG Oral Tablet 21,stopped,order,,albuterol 0.83 MG/ML Inhalation Solution 21,stopped,order,2022-06-01,lisinopril 10 MG Oral Tablet @@ -3618,8 +4384,10 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,order,2016-10-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,order,2016-07-01,lisinopril 10 MG Oral Tablet 21,stopped,order,2016-04-01,amLODIPine 2.5 MG Oral Tablet +21,stopped,order,2015-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,order,2015-10-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,order,2015-09-01,amLODIPine 2.5 MG Oral Tablet +21,stopped,order,2015-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,order,2015-06-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,order,2015-05-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,order,2015-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3632,6 +4400,7 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,order,2012-06-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,order,2012-04-01,amLODIPine 2.5 MG Oral Tablet 21,stopped,order,2012-02-01,Hydrochlorothiazide 25 MG Oral Tablet +21,stopped,order,2012-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 21,stopped,order,2011-12-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,order,2011-08-01,Hydrochlorothiazide 25 MG Oral Tablet 21,stopped,order,2011-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3655,30 +4424,36 @@ cnt,status,intent,authoredon_month,medication_display 21,stopped,order,1997-11-01,lisinopril 10 MG Oral Tablet 21,stopped,order,1997-06-01,lisinopril 10 MG Oral Tablet 21,stopped,order,1997-03-01,Hydrochlorothiazide 25 MG Oral Tablet -21,stopped,order,1994-11-01, 21,stopped,order,1994-05-01,lisinopril 10 MG Oral Tablet -21,stopped,order,1993-08-01, -21,stopped,order,1992-11-01, -21,stopped,order,1989-10-01, -21,stopped,order,1989-09-01, -21,stopped,order,1988-10-01, -21,stopped,order,1988-01-01, -21,stopped,order,1987-08-01, -21,stopped,order,1986-04-01, -21,stopped,order,1985-08-01, -21,stopped,order,1980-11-01, +21,stopped,order,1992-12-01, +21,stopped,order,1987-10-01, +21,stopped,order,1986-02-01, +21,stopped,order,1985-09-01, +21,stopped,order,1984-09-01, +21,stopped,order,1983-11-01, +21,stopped,order,1983-07-01, +21,stopped,order,1983-06-01, +21,stopped,order,1982-12-01, +21,stopped,order,1980-04-01, 21,active,,,albuterol 0.83 MG/ML Inhalation Solution 21,active,order,,albuterol 0.83 MG/ML Inhalation Solution +20,,,,Kyleena 19.5 MG Intrauterine System 20,,,,Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet 20,,,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 20,,,2022-08-01,amLODIPine 2.5 MG Oral Tablet +20,,,2017-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2016-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2016-05-01,amLODIPine 2.5 MG Oral Tablet 20,,,2016-05-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,,2015-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,,2014-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2014-08-01,lisinopril 10 MG Oral Tablet 20,,,2014-08-01,amLODIPine 2.5 MG Oral Tablet 20,,,2014-08-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,,2014-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,,2014-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2014-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,,2013-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2013-12-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2013-11-01,amLODIPine 2.5 MG Oral Tablet 20,,,2013-09-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3688,22 +4463,32 @@ cnt,status,intent,authoredon_month,medication_display 20,,,2013-04-01,amLODIPine 2.5 MG Oral Tablet 20,,,2013-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2013-03-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,,2013-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2012-12-01,amLODIPine 2.5 MG Oral Tablet +20,,,2012-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2012-05-01,amLODIPine 2.5 MG Oral Tablet 20,,,2012-02-01,lisinopril 10 MG Oral Tablet +20,,,2011-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2011-10-01,amLODIPine 2.5 MG Oral Tablet 20,,,2011-08-01,amLODIPine 2.5 MG Oral Tablet 20,,,2011-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2011-06-01,lisinopril 10 MG Oral Tablet +20,,,2011-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,,2011-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2010-06-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2010-04-01,lisinopril 10 MG Oral Tablet +20,,,2010-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2010-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,,2009-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2009-02-01,amLODIPine 2.5 MG Oral Tablet +20,,,2008-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2008-11-01,amLODIPine 2.5 MG Oral Tablet 20,,,2008-06-01,lisinopril 10 MG Oral Tablet 20,,,2008-06-01,amLODIPine 2.5 MG Oral Tablet 20,,,2008-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2008-02-01,lisinopril 10 MG Oral Tablet +20,,,2007-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,,2007-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,2007-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2007-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,,2007-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3719,27 +4504,37 @@ cnt,status,intent,authoredon_month,medication_display 20,,,2001-08-01,lisinopril 10 MG Oral Tablet 20,,,2000-11-01,amLODIPine 2.5 MG Oral Tablet 20,,,2000-07-01,lisinopril 10 MG Oral Tablet +20,,,2000-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,,1998-06-01,lisinopril 10 MG Oral Tablet 20,,,1997-03-01,lisinopril 10 MG Oral Tablet -20,,,1994-04-01, 20,,,1993-12-01, -20,,,1989-07-01, -20,,,1987-09-01, -20,,,1987-06-01, -20,,,1987-04-01, -20,,,1984-12-01, -20,,,1984-05-01, -20,,,1982-03-01, +20,,,1989-03-01, +20,,,1988-03-01, +20,,,1987-07-01, +20,,,1987-02-01, +20,,,1985-11-01, +20,,,1984-07-01, +20,,,1984-03-01, +20,,,1983-08-01, +20,,,1983-03-01, +20,,,1981-11-01, +20,,order,,Kyleena 19.5 MG Intrauterine System 20,,order,,Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet 20,,order,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 20,,order,2022-08-01,amLODIPine 2.5 MG Oral Tablet +20,,order,2017-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2016-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2016-05-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2016-05-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,order,2015-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,order,2014-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2014-08-01,lisinopril 10 MG Oral Tablet 20,,order,2014-08-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2014-08-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,order,2014-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,order,2014-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2014-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,order,2013-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2013-12-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2013-11-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2013-09-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3749,22 +4544,32 @@ cnt,status,intent,authoredon_month,medication_display 20,,order,2013-04-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2013-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2013-03-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,order,2013-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2012-12-01,amLODIPine 2.5 MG Oral Tablet +20,,order,2012-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2012-05-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2012-02-01,lisinopril 10 MG Oral Tablet +20,,order,2011-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2011-10-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2011-08-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2011-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2011-06-01,lisinopril 10 MG Oral Tablet +20,,order,2011-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,order,2011-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2010-06-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2010-04-01,lisinopril 10 MG Oral Tablet +20,,order,2010-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2010-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,,order,2009-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2009-02-01,amLODIPine 2.5 MG Oral Tablet +20,,order,2008-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2008-11-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2008-06-01,lisinopril 10 MG Oral Tablet 20,,order,2008-06-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2008-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2008-02-01,lisinopril 10 MG Oral Tablet +20,,order,2007-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,,order,2007-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,2007-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2007-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,,order,2007-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3780,24 +4585,33 @@ cnt,status,intent,authoredon_month,medication_display 20,,order,2001-08-01,lisinopril 10 MG Oral Tablet 20,,order,2000-11-01,amLODIPine 2.5 MG Oral Tablet 20,,order,2000-07-01,lisinopril 10 MG Oral Tablet +20,,order,2000-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,,order,1998-06-01,lisinopril 10 MG Oral Tablet 20,,order,1997-03-01,lisinopril 10 MG Oral Tablet -20,,order,1994-04-01, 20,,order,1993-12-01, -20,,order,1989-07-01, -20,,order,1987-09-01, -20,,order,1987-06-01, -20,,order,1987-04-01, -20,,order,1984-12-01, -20,,order,1984-05-01, -20,,order,1982-03-01, +20,,order,1989-03-01, +20,,order,1988-03-01, +20,,order,1987-07-01, +20,,order,1987-02-01, +20,,order,1985-11-01, +20,,order,1984-07-01, +20,,order,1984-03-01, +20,,order,1983-08-01, +20,,order,1983-03-01, +20,,order,1981-11-01, +20,stopped,,,Kyleena 19.5 MG Intrauterine System 20,stopped,,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 20,stopped,,2022-05-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2017-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2016-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2016-05-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,,2015-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,,2014-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2014-08-01,amLODIPine 2.5 MG Oral Tablet +20,stopped,,2014-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,,2014-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2014-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,,2013-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2013-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2013-08-01,lisinopril 10 MG Oral Tablet 20,stopped,,2013-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3805,22 +4619,33 @@ cnt,status,intent,authoredon_month,medication_display 20,stopped,,2013-06-01,lisinopril 10 MG Oral Tablet 20,stopped,,2013-04-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2013-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,,2013-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2012-12-01,amLODIPine 2.5 MG Oral Tablet +20,stopped,,2012-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2012-02-01,lisinopril 10 MG Oral Tablet +20,stopped,,2011-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2011-10-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2011-08-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2011-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2011-06-01,lisinopril 10 MG Oral Tablet +20,stopped,,2011-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,,2011-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2010-11-01,lisinopril 10 MG Oral Tablet 20,stopped,,2010-06-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2010-04-01,lisinopril 10 MG Oral Tablet +20,stopped,,2010-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2010-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,,2009-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,,2009-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2009-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,,2008-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2008-11-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2008-06-01,lisinopril 10 MG Oral Tablet 20,stopped,,2008-06-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,2008-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2008-02-01,lisinopril 10 MG Oral Tablet +20,stopped,,2007-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,,2007-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,,2007-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2007-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,,2007-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3840,23 +4665,33 @@ cnt,status,intent,authoredon_month,medication_display 20,stopped,,2001-08-01,lisinopril 10 MG Oral Tablet 20,stopped,,2000-11-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,,1998-06-01,lisinopril 10 MG Oral Tablet -20,stopped,,1994-04-01, 20,stopped,,1993-12-01, 20,stopped,,1993-09-01,lisinopril 10 MG Oral Tablet -20,stopped,,1991-07-01, -20,stopped,,1987-05-01, -20,stopped,,1987-04-01, -20,stopped,,1984-12-01, -20,stopped,,1984-11-01, -20,stopped,,1984-05-01, -20,stopped,,1982-03-01, +20,stopped,,1989-03-01, +20,stopped,,1988-03-01, +20,stopped,,1987-07-01, +20,stopped,,1987-02-01, +20,stopped,,1986-11-01, +20,stopped,,1986-10-01, +20,stopped,,1985-11-01, +20,stopped,,1985-01-01, +20,stopped,,1984-07-01, +20,stopped,,1984-03-01, +20,stopped,,1983-08-01, +20,stopped,,1981-11-01, +20,stopped,order,,Kyleena 19.5 MG Intrauterine System 20,stopped,order,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 20,stopped,order,2022-05-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2017-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2016-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2016-05-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,order,2015-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,order,2014-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2014-08-01,amLODIPine 2.5 MG Oral Tablet +20,stopped,order,2014-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,order,2014-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2014-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,order,2013-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2013-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2013-08-01,lisinopril 10 MG Oral Tablet 20,stopped,order,2013-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3864,22 +4699,33 @@ cnt,status,intent,authoredon_month,medication_display 20,stopped,order,2013-06-01,lisinopril 10 MG Oral Tablet 20,stopped,order,2013-04-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2013-04-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,order,2013-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2012-12-01,amLODIPine 2.5 MG Oral Tablet +20,stopped,order,2012-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2012-02-01,lisinopril 10 MG Oral Tablet +20,stopped,order,2011-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2011-10-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2011-08-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2011-07-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2011-06-01,lisinopril 10 MG Oral Tablet +20,stopped,order,2011-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,order,2011-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2010-11-01,lisinopril 10 MG Oral Tablet 20,stopped,order,2010-06-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2010-04-01,lisinopril 10 MG Oral Tablet +20,stopped,order,2010-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2010-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,order,2009-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,order,2009-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2009-02-01,Hydrochlorothiazide 25 MG Oral Tablet +20,stopped,order,2008-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2008-11-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2008-06-01,lisinopril 10 MG Oral Tablet 20,stopped,order,2008-06-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,2008-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2008-02-01,lisinopril 10 MG Oral Tablet +20,stopped,order,2007-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +20,stopped,order,2007-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 20,stopped,order,2007-09-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2007-04-01,Hydrochlorothiazide 25 MG Oral Tablet 20,stopped,order,2007-03-01,amLODIPine 2.5 MG Oral Tablet @@ -3899,16 +4745,20 @@ cnt,status,intent,authoredon_month,medication_display 20,stopped,order,2001-08-01,lisinopril 10 MG Oral Tablet 20,stopped,order,2000-11-01,amLODIPine 2.5 MG Oral Tablet 20,stopped,order,1998-06-01,lisinopril 10 MG Oral Tablet -20,stopped,order,1994-04-01, 20,stopped,order,1993-12-01, 20,stopped,order,1993-09-01,lisinopril 10 MG Oral Tablet -20,stopped,order,1991-07-01, -20,stopped,order,1987-05-01, -20,stopped,order,1987-04-01, -20,stopped,order,1984-12-01, -20,stopped,order,1984-11-01, -20,stopped,order,1984-05-01, -20,stopped,order,1982-03-01, +20,stopped,order,1989-03-01, +20,stopped,order,1988-03-01, +20,stopped,order,1987-07-01, +20,stopped,order,1987-02-01, +20,stopped,order,1986-11-01, +20,stopped,order,1986-10-01, +20,stopped,order,1985-11-01, +20,stopped,order,1985-01-01, +20,stopped,order,1984-07-01, +20,stopped,order,1984-03-01, +20,stopped,order,1983-08-01, +20,stopped,order,1981-11-01, 20,active,,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 20,active,order,,120 ACTUAT fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler [Flovent] 19,,,,lisinopril 20 MG Oral Tablet @@ -3916,27 +4766,38 @@ cnt,status,intent,authoredon_month,medication_display 19,,,2019-07-01,amLODIPine 2.5 MG Oral Tablet 19,,,2018-07-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2017-04-01,amLODIPine 2.5 MG Oral Tablet +19,,,2016-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,,,2016-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2015-09-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,,2014-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2014-10-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2014-03-01,amLODIPine 2.5 MG Oral Tablet 19,,,2014-03-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,,2014-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2013-11-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2013-10-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,,2013-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2013-05-01,amLODIPine 2.5 MG Oral Tablet +19,,,2013-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,,,2013-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2013-02-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2012-10-01,amLODIPine 2.5 MG Oral Tablet +19,,,2012-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2011-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2011-07-01,amLODIPine 2.5 MG Oral Tablet 19,,,2011-05-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2011-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2011-02-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2011-01-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,,2010-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2010-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2009-11-01,lisinopril 10 MG Oral Tablet 19,,,2009-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2009-06-01,amLODIPine 2.5 MG Oral Tablet 19,,,2009-06-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,,2009-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2009-05-01,amLODIPine 2.5 MG Oral Tablet +19,,,2009-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2008-10-01,lisinopril 10 MG Oral Tablet 19,,,2008-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2008-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -3944,6 +4805,7 @@ cnt,status,intent,authoredon_month,medication_display 19,,,2008-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2007-11-01,lisinopril 10 MG Oral Tablet 19,,,2007-06-01,lisinopril 10 MG Oral Tablet +19,,,2007-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,,2007-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,,2007-05-01,lisinopril 10 MG Oral Tablet 19,,,2007-02-01,lisinopril 10 MG Oral Tablet @@ -3978,45 +4840,62 @@ cnt,status,intent,authoredon_month,medication_display 19,,,1997-12-01,lisinopril 10 MG Oral Tablet 19,,,1997-08-01,lisinopril 10 MG Oral Tablet 19,,,1997-07-01,lisinopril 10 MG Oral Tablet -19,,,1996-04-01, +19,,,1995-12-01, 19,,,1995-10-01,lisinopril 10 MG Oral Tablet 19,,,1994-06-01,lisinopril 10 MG Oral Tablet 19,,,1993-07-01,lisinopril 10 MG Oral Tablet 19,,,1993-05-01,lisinopril 10 MG Oral Tablet -19,,,1992-03-01, -19,,,1990-11-01, -19,,,1986-07-01, -19,,,1986-01-01, -19,,,1983-12-01, -19,,,1983-06-01, -19,,,1981-11-01, -19,,,1980-04-01, +19,,,1989-11-01, +19,,,1986-03-01, +19,,,1985-07-01, +19,,,1985-06-01, +19,,,1985-04-01, +19,,,1985-02-01, +19,,,1984-06-01, +19,,,1984-04-01, +19,,,1984-01-01, +19,,,1983-02-01, +19,,,1982-11-01, +19,,,1982-08-01, +19,,,1982-04-01, +19,,,1981-04-01, 19,,order,,lisinopril 20 MG Oral Tablet 19,,order,,carvedilol 25 MG Oral Tablet 19,,order,2019-07-01,amLODIPine 2.5 MG Oral Tablet 19,,order,2018-07-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2017-04-01,amLODIPine 2.5 MG Oral Tablet +19,,order,2016-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,,order,2016-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2015-09-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,order,2014-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2014-10-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2014-03-01,amLODIPine 2.5 MG Oral Tablet 19,,order,2014-03-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,order,2014-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2013-11-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2013-10-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,order,2013-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2013-05-01,amLODIPine 2.5 MG Oral Tablet +19,,order,2013-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,,order,2013-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2013-02-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2012-10-01,amLODIPine 2.5 MG Oral Tablet +19,,order,2012-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2011-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2011-07-01,amLODIPine 2.5 MG Oral Tablet 19,,order,2011-05-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2011-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2011-02-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2011-01-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,order,2010-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2010-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2009-11-01,lisinopril 10 MG Oral Tablet 19,,order,2009-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2009-06-01,amLODIPine 2.5 MG Oral Tablet 19,,order,2009-06-01,Hydrochlorothiazide 25 MG Oral Tablet +19,,order,2009-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2009-05-01,amLODIPine 2.5 MG Oral Tablet +19,,order,2009-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2008-10-01,lisinopril 10 MG Oral Tablet 19,,order,2008-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2008-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4024,6 +4903,7 @@ cnt,status,intent,authoredon_month,medication_display 19,,order,2008-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2007-11-01,lisinopril 10 MG Oral Tablet 19,,order,2007-06-01,lisinopril 10 MG Oral Tablet +19,,order,2007-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,,order,2007-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,,order,2007-05-01,lisinopril 10 MG Oral Tablet 19,,order,2007-02-01,lisinopril 10 MG Oral Tablet @@ -4058,34 +4938,46 @@ cnt,status,intent,authoredon_month,medication_display 19,,order,1997-12-01,lisinopril 10 MG Oral Tablet 19,,order,1997-08-01,lisinopril 10 MG Oral Tablet 19,,order,1997-07-01,lisinopril 10 MG Oral Tablet -19,,order,1996-04-01, +19,,order,1995-12-01, 19,,order,1995-10-01,lisinopril 10 MG Oral Tablet 19,,order,1994-06-01,lisinopril 10 MG Oral Tablet 19,,order,1993-07-01,lisinopril 10 MG Oral Tablet 19,,order,1993-05-01,lisinopril 10 MG Oral Tablet -19,,order,1992-03-01, -19,,order,1990-11-01, -19,,order,1986-07-01, -19,,order,1986-01-01, -19,,order,1983-12-01, -19,,order,1983-06-01, -19,,order,1981-11-01, -19,,order,1980-04-01, +19,,order,1989-11-01, +19,,order,1986-03-01, +19,,order,1985-07-01, +19,,order,1985-06-01, +19,,order,1985-04-01, +19,,order,1985-02-01, +19,,order,1984-06-01, +19,,order,1984-04-01, +19,,order,1984-01-01, +19,,order,1983-02-01, +19,,order,1982-11-01, +19,,order,1982-08-01, +19,,order,1982-04-01, +19,,order,1981-04-01, 19,stopped,,,Acetaminophen 325 MG / HYDROcodone Bitartrate 7.5 MG Oral Tablet +19,stopped,,,168 HR Ethinyl Estradiol 0.00146 MG/HR / norelgestromin 0.00625 MG/HR Transdermal System 19,stopped,,2022-10-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2022-07-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2022-06-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2019-07-01,amLODIPine 2.5 MG Oral Tablet +19,stopped,,2017-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,stopped,,2016-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2015-09-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,,2014-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2014-10-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2014-08-01,lisinopril 10 MG Oral Tablet 19,stopped,,2014-08-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2014-03-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2014-03-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,,2014-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2013-12-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2013-11-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2013-11-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2013-05-01,amLODIPine 2.5 MG Oral Tablet +19,stopped,,2013-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2013-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2012-10-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2012-05-01,amLODIPine 2.5 MG Oral Tablet @@ -4094,11 +4986,13 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,,2011-05-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2011-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2011-01-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,,2010-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2010-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2009-11-01,lisinopril 10 MG Oral Tablet 19,stopped,,2009-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2009-06-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2009-06-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,,2009-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2009-05-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2009-02-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,,2008-10-01,lisinopril 10 MG Oral Tablet @@ -4108,6 +5002,7 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,,2008-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2007-11-01,lisinopril 10 MG Oral Tablet 19,stopped,,2007-06-01,lisinopril 10 MG Oral Tablet +19,stopped,,2007-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2007-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,,2007-02-01,lisinopril 10 MG Oral Tablet 19,stopped,,2006-12-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4133,6 +5028,7 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,,2001-02-01,lisinopril 10 MG Oral Tablet 19,stopped,,2000-09-01,lisinopril 10 MG Oral Tablet 19,stopped,,2000-07-01,lisinopril 10 MG Oral Tablet +19,stopped,,2000-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,,2000-03-01,lisinopril 10 MG Oral Tablet 19,stopped,,1999-09-01,lisinopril 10 MG Oral Tablet 19,stopped,,1999-09-01,amLODIPine 2.5 MG Oral Tablet @@ -4142,35 +5038,41 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,,1997-08-01,lisinopril 10 MG Oral Tablet 19,stopped,,1997-07-01,lisinopril 10 MG Oral Tablet 19,stopped,,1997-03-01,lisinopril 10 MG Oral Tablet -19,stopped,,1996-04-01, +19,stopped,,1995-12-01, 19,stopped,,1994-06-01,lisinopril 10 MG Oral Tablet 19,stopped,,1993-07-01,lisinopril 10 MG Oral Tablet 19,stopped,,1993-05-01,lisinopril 10 MG Oral Tablet -19,stopped,,1992-03-01, -19,stopped,,1990-11-01, -19,stopped,,1989-07-01, -19,stopped,,1987-09-01, -19,stopped,,1987-06-01, -19,stopped,,1986-01-01, -19,stopped,,1983-12-01, -19,stopped,,1983-05-01, -19,stopped,,1981-11-01, -19,stopped,,1980-04-01, +19,stopped,,1989-11-01, +19,stopped,,1986-03-01, +19,stopped,,1985-07-01, +19,stopped,,1984-06-01, +19,stopped,,1984-04-01, +19,stopped,,1983-03-01, +19,stopped,,1982-11-01, +19,stopped,,1982-05-01, +19,stopped,,1982-04-01, +19,stopped,,1981-04-01, 19,stopped,order,,Acetaminophen 325 MG / HYDROcodone Bitartrate 7.5 MG Oral Tablet +19,stopped,order,,168 HR Ethinyl Estradiol 0.00146 MG/HR / norelgestromin 0.00625 MG/HR Transdermal System 19,stopped,order,2022-10-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2022-07-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2022-06-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2019-07-01,amLODIPine 2.5 MG Oral Tablet +19,stopped,order,2017-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +19,stopped,order,2016-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2015-09-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,order,2014-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2014-10-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2014-08-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2014-08-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2014-03-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2014-03-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,order,2014-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2013-12-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2013-11-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2013-11-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2013-05-01,amLODIPine 2.5 MG Oral Tablet +19,stopped,order,2013-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2013-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2012-10-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2012-05-01,amLODIPine 2.5 MG Oral Tablet @@ -4179,11 +5081,13 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,order,2011-05-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2011-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2011-01-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,order,2010-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2010-04-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2009-11-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2009-09-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2009-06-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2009-06-01,Hydrochlorothiazide 25 MG Oral Tablet +19,stopped,order,2009-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2009-05-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2009-02-01,amLODIPine 2.5 MG Oral Tablet 19,stopped,order,2008-10-01,lisinopril 10 MG Oral Tablet @@ -4193,6 +5097,7 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,order,2008-03-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2007-11-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2007-06-01,lisinopril 10 MG Oral Tablet +19,stopped,order,2007-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2007-06-01,Hydrochlorothiazide 25 MG Oral Tablet 19,stopped,order,2007-02-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2006-12-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4218,6 +5123,7 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,order,2001-02-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2000-09-01,lisinopril 10 MG Oral Tablet 19,stopped,order,2000-07-01,lisinopril 10 MG Oral Tablet +19,stopped,order,2000-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 19,stopped,order,2000-03-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1999-09-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1999-09-01,amLODIPine 2.5 MG Oral Tablet @@ -4227,44 +5133,57 @@ cnt,status,intent,authoredon_month,medication_display 19,stopped,order,1997-08-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1997-07-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1997-03-01,lisinopril 10 MG Oral Tablet -19,stopped,order,1996-04-01, +19,stopped,order,1995-12-01, 19,stopped,order,1994-06-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1993-07-01,lisinopril 10 MG Oral Tablet 19,stopped,order,1993-05-01,lisinopril 10 MG Oral Tablet -19,stopped,order,1992-03-01, -19,stopped,order,1990-11-01, -19,stopped,order,1989-07-01, -19,stopped,order,1987-09-01, -19,stopped,order,1987-06-01, -19,stopped,order,1986-01-01, -19,stopped,order,1983-12-01, -19,stopped,order,1983-05-01, -19,stopped,order,1981-11-01, -19,stopped,order,1980-04-01, +19,stopped,order,1989-11-01, +19,stopped,order,1986-03-01, +19,stopped,order,1985-07-01, +19,stopped,order,1984-06-01, +19,stopped,order,1984-04-01, +19,stopped,order,1983-03-01, +19,stopped,order,1982-11-01, +19,stopped,order,1982-05-01, +19,stopped,order,1982-04-01, +19,stopped,order,1981-04-01, 19,active,,,lisinopril 20 MG Oral Tablet 19,active,,,carvedilol 25 MG Oral Tablet 19,active,order,,lisinopril 20 MG Oral Tablet 19,active,order,,carvedilol 25 MG Oral Tablet +18,,,,nitroglycerin 0.4 MG Sublingual Tablet 18,,,2020-07-01,amLODIPine 2.5 MG Oral Tablet 18,,,2018-07-01,amLODIPine 2.5 MG Oral Tablet 18,,,2016-07-01,amLODIPine 2.5 MG Oral Tablet 18,,,2015-12-01,amLODIPine 2.5 MG Oral Tablet +18,,,2015-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2015-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2014-06-01,amLODIPine 2.5 MG Oral Tablet +18,,,2014-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,,2013-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2013-02-01,amLODIPine 2.5 MG Oral Tablet +18,,,2012-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,,2012-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2012-07-01,amLODIPine 2.5 MG Oral Tablet 18,,,2012-06-01,lisinopril 10 MG Oral Tablet +18,,,2012-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2012-03-01,amLODIPine 2.5 MG Oral Tablet 18,,,2012-02-01,amLODIPine 2.5 MG Oral Tablet +18,,,2011-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2011-07-01,lisinopril 10 MG Oral Tablet 18,,,2011-05-01,amLODIPine 2.5 MG Oral Tablet 18,,,2010-06-01,lisinopril 10 MG Oral Tablet +18,,,2010-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2010-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,2010-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2010-02-01,amLODIPine 2.5 MG Oral Tablet 18,,,2009-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,2009-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2009-01-01,amLODIPine 2.5 MG Oral Tablet +18,,,2008-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2008-08-01,lisinopril 10 MG Oral Tablet 18,,,2008-07-01,amLODIPine 2.5 MG Oral Tablet +18,,,2008-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2008-02-01,amLODIPine 2.5 MG Oral Tablet 18,,,2007-09-01,amLODIPine 2.5 MG Oral Tablet 18,,,2007-08-01,lisinopril 10 MG Oral Tablet @@ -4273,13 +5192,17 @@ cnt,status,intent,authoredon_month,medication_display 18,,,2007-07-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2007-06-01,amLODIPine 2.5 MG Oral Tablet 18,,,2007-04-01,lisinopril 10 MG Oral Tablet +18,,,2007-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2007-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,2006-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2006-01-01,amLODIPine 2.5 MG Oral Tablet 18,,,2006-01-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2005-12-01,amLODIPine 2.5 MG Oral Tablet 18,,,2005-12-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2005-10-01,amLODIPine 2.5 MG Oral Tablet +18,,,2005-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2005-06-01,lisinopril 10 MG Oral Tablet +18,,,2004-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2004-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2004-07-01,amLODIPine 2.5 MG Oral Tablet 18,,,2004-03-01,lisinopril 10 MG Oral Tablet @@ -4289,7 +5212,10 @@ cnt,status,intent,authoredon_month,medication_display 18,,,2003-10-01,amLODIPine 2.5 MG Oral Tablet 18,,,2003-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2003-08-01,lisinopril 10 MG Oral Tablet +18,,,2003-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,,2002-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2002-12-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,2002-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,2002-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2002-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2002-07-01,lisinopril 10 MG Oral Tablet @@ -4302,11 +5228,13 @@ cnt,status,intent,authoredon_month,medication_display 18,,,2000-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,2000-08-01,lisinopril 10 MG Oral Tablet 18,,,2000-07-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,2000-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,1999-10-01,amLODIPine 2.5 MG Oral Tablet 18,,,1999-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,,1999-08-01,amLODIPine 2.5 MG Oral Tablet 18,,,1998-09-01,lisinopril 10 MG Oral Tablet 18,,,1997-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,,1997-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,,1996-10-01,lisinopril 10 MG Oral Tablet 18,,,1996-09-01,lisinopril 10 MG Oral Tablet 18,,,1996-08-01,lisinopril 10 MG Oral Tablet @@ -4317,41 +5245,49 @@ cnt,status,intent,authoredon_month,medication_display 18,,,1995-01-01,lisinopril 10 MG Oral Tablet 18,,,1994-09-01,lisinopril 10 MG Oral Tablet 18,,,1993-07-01,amLODIPine 2.5 MG Oral Tablet -18,,,1992-12-01, 18,,,1992-05-01,lisinopril 10 MG Oral Tablet -18,,,1991-11-01, 18,,,1991-02-01,Hydrochlorothiazide 25 MG Oral Tablet -18,,,1990-03-01, -18,,,1988-09-01, -18,,,1987-10-01, -18,,,1985-05-01, -18,,,1985-01-01, -18,,,1984-08-01, -18,,,1984-03-01, -18,,,1983-11-01, -18,,,1983-07-01, -18,,,1982-12-01, +18,,,1983-10-01, +18,,,1983-04-01, +18,,,1982-07-01, +18,,,1982-06-01, +18,,,1981-07-01, +18,,,1979-11-01, 18,,,1979-10-01, +18,,,1977-11-01, +18,,order,,nitroglycerin 0.4 MG Sublingual Tablet 18,,order,2020-07-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2018-07-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2016-07-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2015-12-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2015-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2015-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2014-06-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2014-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,order,2013-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2013-02-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2012-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,order,2012-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2012-07-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2012-06-01,lisinopril 10 MG Oral Tablet +18,,order,2012-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2012-03-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2012-02-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2011-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2011-07-01,lisinopril 10 MG Oral Tablet 18,,order,2011-05-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2010-06-01,lisinopril 10 MG Oral Tablet +18,,order,2010-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2010-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,2010-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2010-02-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2009-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,2009-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2009-01-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2008-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2008-08-01,lisinopril 10 MG Oral Tablet 18,,order,2008-07-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2008-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2008-02-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2007-09-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2007-08-01,lisinopril 10 MG Oral Tablet @@ -4360,13 +5296,17 @@ cnt,status,intent,authoredon_month,medication_display 18,,order,2007-07-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2007-06-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2007-04-01,lisinopril 10 MG Oral Tablet +18,,order,2007-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2007-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,2006-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2006-01-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2006-01-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2005-12-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2005-12-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2005-10-01,amLODIPine 2.5 MG Oral Tablet +18,,order,2005-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2005-06-01,lisinopril 10 MG Oral Tablet +18,,order,2004-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2004-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2004-07-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2004-03-01,lisinopril 10 MG Oral Tablet @@ -4376,7 +5316,10 @@ cnt,status,intent,authoredon_month,medication_display 18,,order,2003-10-01,amLODIPine 2.5 MG Oral Tablet 18,,order,2003-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2003-08-01,lisinopril 10 MG Oral Tablet +18,,order,2003-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,,order,2002-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2002-12-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,2002-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,2002-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2002-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2002-07-01,lisinopril 10 MG Oral Tablet @@ -4389,11 +5332,13 @@ cnt,status,intent,authoredon_month,medication_display 18,,order,2000-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,2000-08-01,lisinopril 10 MG Oral Tablet 18,,order,2000-07-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,2000-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,1999-10-01,amLODIPine 2.5 MG Oral Tablet 18,,order,1999-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,,order,1999-08-01,amLODIPine 2.5 MG Oral Tablet 18,,order,1998-09-01,lisinopril 10 MG Oral Tablet 18,,order,1997-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,,order,1997-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,,order,1996-10-01,lisinopril 10 MG Oral Tablet 18,,order,1996-09-01,lisinopril 10 MG Oral Tablet 18,,order,1996-08-01,lisinopril 10 MG Oral Tablet @@ -4404,21 +5349,18 @@ cnt,status,intent,authoredon_month,medication_display 18,,order,1995-01-01,lisinopril 10 MG Oral Tablet 18,,order,1994-09-01,lisinopril 10 MG Oral Tablet 18,,order,1993-07-01,amLODIPine 2.5 MG Oral Tablet -18,,order,1992-12-01, 18,,order,1992-05-01,lisinopril 10 MG Oral Tablet -18,,order,1991-11-01, 18,,order,1991-02-01,Hydrochlorothiazide 25 MG Oral Tablet -18,,order,1990-03-01, -18,,order,1988-09-01, -18,,order,1987-10-01, -18,,order,1985-05-01, -18,,order,1985-01-01, -18,,order,1984-08-01, -18,,order,1984-03-01, -18,,order,1983-11-01, -18,,order,1983-07-01, -18,,order,1982-12-01, +18,,order,1983-10-01, +18,,order,1983-04-01, +18,,order,1982-07-01, +18,,order,1982-06-01, +18,,order,1981-07-01, +18,,order,1979-11-01, 18,,order,1979-10-01, +18,,order,1977-11-01, +18,stopped,,,nitroglycerin 0.4 MG Sublingual Tablet +18,stopped,,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2022-11-01,lisinopril 10 MG Oral Tablet 18,stopped,,2022-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2022-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4428,26 +5370,41 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,,2018-07-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2017-04-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2016-07-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2016-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2016-05-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2015-12-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2015-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2015-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2014-06-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2014-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2013-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2013-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,,2013-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,,2013-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2013-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2013-02-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2012-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,,2012-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2012-07-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2012-06-01,lisinopril 10 MG Oral Tablet 18,stopped,,2012-03-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2012-02-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2011-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2011-05-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2011-02-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2010-06-01,lisinopril 10 MG Oral Tablet +18,stopped,,2010-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2010-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2010-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2010-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2009-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2009-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,,2009-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2009-01-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2008-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2008-08-01,lisinopril 10 MG Oral Tablet 18,stopped,,2008-07-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2008-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2008-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2007-09-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2007-08-01,lisinopril 10 MG Oral Tablet @@ -4457,13 +5414,17 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,,2007-06-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2007-05-01,lisinopril 10 MG Oral Tablet 18,stopped,,2007-04-01,lisinopril 10 MG Oral Tablet +18,stopped,,2007-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2007-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2006-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2006-01-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2006-01-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2005-12-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2005-12-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2005-10-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,,2005-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2005-06-01,lisinopril 10 MG Oral Tablet +18,stopped,,2004-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2004-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2004-07-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2004-03-01,lisinopril 10 MG Oral Tablet @@ -4472,7 +5433,10 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,,2003-10-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,2003-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2003-08-01,lisinopril 10 MG Oral Tablet +18,stopped,,2003-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,,2002-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2002-12-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2002-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,2002-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2002-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,2002-07-01,lisinopril 10 MG Oral Tablet @@ -4484,11 +5448,13 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,,2001-01-01,lisinopril 10 MG Oral Tablet 18,stopped,,2000-08-01,lisinopril 10 MG Oral Tablet 18,stopped,,2000-07-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,2000-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,1999-10-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,1999-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,,1999-08-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,,1998-09-01,lisinopril 10 MG Oral Tablet 18,stopped,,1997-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,,1997-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,,1996-10-01,lisinopril 10 MG Oral Tablet 18,stopped,,1996-09-01,lisinopril 10 MG Oral Tablet 18,stopped,,1996-08-01,lisinopril 10 MG Oral Tablet @@ -4500,21 +5466,16 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,,1995-01-01,lisinopril 10 MG Oral Tablet 18,stopped,,1994-09-01,lisinopril 10 MG Oral Tablet 18,stopped,,1993-07-01,amLODIPine 2.5 MG Oral Tablet -18,stopped,,1992-12-01, 18,stopped,,1992-05-01,lisinopril 10 MG Oral Tablet -18,stopped,,1991-11-01, 18,stopped,,1991-02-01,Hydrochlorothiazide 25 MG Oral Tablet -18,stopped,,1988-09-01, -18,stopped,,1987-10-01, -18,stopped,,1986-07-01, -18,stopped,,1985-05-01, -18,stopped,,1984-08-01, -18,stopped,,1984-03-01, -18,stopped,,1983-11-01, -18,stopped,,1983-07-01, -18,stopped,,1983-06-01, -18,stopped,,1982-12-01, +18,stopped,,1985-04-01, +18,stopped,,1984-01-01, +18,stopped,,1983-04-01, +18,stopped,,1982-07-01, +18,stopped,,1982-06-01, 18,stopped,,1979-10-01, +18,stopped,order,,nitroglycerin 0.4 MG Sublingual Tablet +18,stopped,order,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2022-11-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2022-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2022-05-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4524,26 +5485,41 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,order,2018-07-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2017-04-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2016-07-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2016-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2016-05-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2015-12-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2015-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2015-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2014-06-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2014-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2013-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2013-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,order,2013-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,order,2013-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2013-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2013-02-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2012-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,order,2012-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2012-07-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2012-06-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2012-03-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2012-02-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2011-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2011-05-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2011-02-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2010-06-01,lisinopril 10 MG Oral Tablet +18,stopped,order,2010-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2010-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2010-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2010-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2009-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2009-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,order,2009-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2009-01-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2008-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2008-08-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2008-07-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2008-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2008-02-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2007-09-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2007-08-01,lisinopril 10 MG Oral Tablet @@ -4553,13 +5529,17 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,order,2007-06-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2007-05-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2007-04-01,lisinopril 10 MG Oral Tablet +18,stopped,order,2007-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2007-03-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2006-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2006-01-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2006-01-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2005-12-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2005-12-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2005-10-01,amLODIPine 2.5 MG Oral Tablet +18,stopped,order,2005-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2005-06-01,lisinopril 10 MG Oral Tablet +18,stopped,order,2004-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2004-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2004-07-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2004-03-01,lisinopril 10 MG Oral Tablet @@ -4568,7 +5548,10 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,order,2003-10-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,2003-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2003-08-01,lisinopril 10 MG Oral Tablet +18,stopped,order,2003-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +18,stopped,order,2002-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2002-12-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2002-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,2002-11-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2002-08-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,2002-07-01,lisinopril 10 MG Oral Tablet @@ -4580,11 +5563,13 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,order,2001-01-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2000-08-01,lisinopril 10 MG Oral Tablet 18,stopped,order,2000-07-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,2000-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,1999-10-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,1999-10-01,Hydrochlorothiazide 25 MG Oral Tablet 18,stopped,order,1999-08-01,amLODIPine 2.5 MG Oral Tablet 18,stopped,order,1998-09-01,lisinopril 10 MG Oral Tablet 18,stopped,order,1997-10-01,Hydrochlorothiazide 25 MG Oral Tablet +18,stopped,order,1997-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 18,stopped,order,1996-10-01,lisinopril 10 MG Oral Tablet 18,stopped,order,1996-09-01,lisinopril 10 MG Oral Tablet 18,stopped,order,1996-08-01,lisinopril 10 MG Oral Tablet @@ -4596,50 +5581,52 @@ cnt,status,intent,authoredon_month,medication_display 18,stopped,order,1995-01-01,lisinopril 10 MG Oral Tablet 18,stopped,order,1994-09-01,lisinopril 10 MG Oral Tablet 18,stopped,order,1993-07-01,amLODIPine 2.5 MG Oral Tablet -18,stopped,order,1992-12-01, 18,stopped,order,1992-05-01,lisinopril 10 MG Oral Tablet -18,stopped,order,1991-11-01, 18,stopped,order,1991-02-01,Hydrochlorothiazide 25 MG Oral Tablet -18,stopped,order,1988-09-01, -18,stopped,order,1987-10-01, -18,stopped,order,1986-07-01, -18,stopped,order,1985-05-01, -18,stopped,order,1984-08-01, -18,stopped,order,1984-03-01, -18,stopped,order,1983-11-01, -18,stopped,order,1983-07-01, -18,stopped,order,1983-06-01, -18,stopped,order,1982-12-01, +18,stopped,order,1985-04-01, +18,stopped,order,1984-01-01, +18,stopped,order,1983-04-01, +18,stopped,order,1982-07-01, +18,stopped,order,1982-06-01, 18,stopped,order,1979-10-01, 18,active,,2023-02-01,lisinopril 10 MG Oral Tablet 18,active,order,2023-02-01,lisinopril 10 MG Oral Tablet +17,,,,remifentanil 2 MG Injection 17,,,,cetirizine hydrochloride 5 MG Oral Tablet 17,,,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet +17,,,2017-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2012-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2012-08-01,amLODIPine 2.5 MG Oral Tablet 17,,,2012-08-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2012-07-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,,2012-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,,,2011-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2011-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2011-04-01,amLODIPine 2.5 MG Oral Tablet +17,,,2010-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2010-07-01,lisinopril 10 MG Oral Tablet 17,,,2010-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2010-04-01,amLODIPine 2.5 MG Oral Tablet +17,,,2010-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2009-09-01,amLODIPine 2.5 MG Oral Tablet 17,,,2008-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2008-09-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2008-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2008-03-01,amLODIPine 2.5 MG Oral Tablet +17,,,2007-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2007-02-01,amLODIPine 2.5 MG Oral Tablet 17,,,2007-01-01,lisinopril 10 MG Oral Tablet 17,,,2006-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2006-06-01,amLODIPine 2.5 MG Oral Tablet 17,,,2006-04-01,amLODIPine 2.5 MG Oral Tablet +17,,,2005-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2005-09-01,amLODIPine 2.5 MG Oral Tablet 17,,,2005-02-01,lisinopril 10 MG Oral Tablet 17,,,2004-09-01,lisinopril 10 MG Oral Tablet 17,,,2004-09-01,amLODIPine 2.5 MG Oral Tablet 17,,,2004-08-01,lisinopril 10 MG Oral Tablet 17,,,2004-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,,2003-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2003-09-01,lisinopril 10 MG Oral Tablet 17,,,2003-08-01,amLODIPine 2.5 MG Oral Tablet 17,,,2003-07-01,amLODIPine 2.5 MG Oral Tablet @@ -4649,11 +5636,14 @@ cnt,status,intent,authoredon_month,medication_display 17,,,2002-08-01,amLODIPine 2.5 MG Oral Tablet 17,,,2002-07-01,amLODIPine 2.5 MG Oral Tablet 17,,,2002-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,,2002-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2002-01-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,,2001-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2001-08-01,amLODIPine 2.5 MG Oral Tablet 17,,,2001-03-01,lisinopril 10 MG Oral Tablet 17,,,2000-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2000-10-01,amLODIPine 2.5 MG Oral Tablet +17,,,2000-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,2000-06-01,amLODIPine 2.5 MG Oral Tablet 17,,,2000-06-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,2000-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4666,10 +5656,12 @@ cnt,status,intent,authoredon_month,medication_display 17,,,1998-10-01,amLODIPine 2.5 MG Oral Tablet 17,,,1998-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,1998-08-01,lisinopril 10 MG Oral Tablet +17,,,1997-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,1997-08-01,amLODIPine 2.5 MG Oral Tablet 17,,,1997-07-01,amLODIPine 2.5 MG Oral Tablet 17,,,1997-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,1997-05-01,lisinopril 10 MG Oral Tablet +17,,,1997-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,,1997-02-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,1996-05-01,lisinopril 10 MG Oral Tablet 17,,,1996-01-01,lisinopril 10 MG Oral Tablet @@ -4677,49 +5669,51 @@ cnt,status,intent,authoredon_month,medication_display 17,,,1993-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,,1991-05-01,lisinopril 10 MG Oral Tablet 17,,,1990-02-01,Hydrochlorothiazide 25 MG Oral Tablet -17,,,1989-03-01, -17,,,1987-07-01, -17,,,1987-02-01, -17,,,1986-03-01, -17,,,1985-11-01, -17,,,1985-09-01, -17,,,1984-09-01, -17,,,1984-07-01, -17,,,1983-03-01, -17,,,1982-11-01, -17,,,1982-07-01, -17,,,1982-06-01, -17,,,1982-05-01, -17,,,1981-04-01, -17,,,1979-11-01, -17,,,1977-11-01, +17,,,1987-11-01, +17,,,1985-10-01, +17,,,1985-03-01, +17,,,1984-02-01, +17,,,1983-09-01, +17,,,1982-09-01, +17,,,1981-08-01, +17,,,1981-03-01, +17,,,1980-10-01, +17,,order,,remifentanil 2 MG Injection 17,,order,,cetirizine hydrochloride 5 MG Oral Tablet 17,,order,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet +17,,order,2017-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2012-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2012-08-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2012-08-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2012-07-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,order,2012-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,,order,2011-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2011-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2011-04-01,amLODIPine 2.5 MG Oral Tablet +17,,order,2010-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2010-07-01,lisinopril 10 MG Oral Tablet 17,,order,2010-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2010-04-01,amLODIPine 2.5 MG Oral Tablet +17,,order,2010-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2009-09-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2008-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2008-09-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2008-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2008-03-01,amLODIPine 2.5 MG Oral Tablet +17,,order,2007-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2007-02-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2007-01-01,lisinopril 10 MG Oral Tablet 17,,order,2006-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2006-06-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2006-04-01,amLODIPine 2.5 MG Oral Tablet +17,,order,2005-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2005-09-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2005-02-01,lisinopril 10 MG Oral Tablet 17,,order,2004-09-01,lisinopril 10 MG Oral Tablet 17,,order,2004-09-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2004-08-01,lisinopril 10 MG Oral Tablet 17,,order,2004-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,order,2003-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2003-09-01,lisinopril 10 MG Oral Tablet 17,,order,2003-08-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2003-07-01,amLODIPine 2.5 MG Oral Tablet @@ -4729,11 +5723,14 @@ cnt,status,intent,authoredon_month,medication_display 17,,order,2002-08-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2002-07-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2002-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,order,2002-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2002-01-01,Hydrochlorothiazide 25 MG Oral Tablet +17,,order,2001-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2001-08-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2001-03-01,lisinopril 10 MG Oral Tablet 17,,order,2000-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2000-10-01,amLODIPine 2.5 MG Oral Tablet +17,,order,2000-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,2000-06-01,amLODIPine 2.5 MG Oral Tablet 17,,order,2000-06-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,2000-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4746,10 +5743,12 @@ cnt,status,intent,authoredon_month,medication_display 17,,order,1998-10-01,amLODIPine 2.5 MG Oral Tablet 17,,order,1998-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,1998-08-01,lisinopril 10 MG Oral Tablet +17,,order,1997-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,1997-08-01,amLODIPine 2.5 MG Oral Tablet 17,,order,1997-07-01,amLODIPine 2.5 MG Oral Tablet 17,,order,1997-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,1997-05-01,lisinopril 10 MG Oral Tablet +17,,order,1997-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,,order,1997-02-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,1996-05-01,lisinopril 10 MG Oral Tablet 17,,order,1996-01-01,lisinopril 10 MG Oral Tablet @@ -4757,45 +5756,47 @@ cnt,status,intent,authoredon_month,medication_display 17,,order,1993-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,,order,1991-05-01,lisinopril 10 MG Oral Tablet 17,,order,1990-02-01,Hydrochlorothiazide 25 MG Oral Tablet -17,,order,1989-03-01, -17,,order,1987-07-01, -17,,order,1987-02-01, -17,,order,1986-03-01, -17,,order,1985-11-01, -17,,order,1985-09-01, -17,,order,1984-09-01, -17,,order,1984-07-01, -17,,order,1983-03-01, -17,,order,1982-11-01, -17,,order,1982-07-01, -17,,order,1982-06-01, -17,,order,1982-05-01, -17,,order,1981-04-01, -17,,order,1979-11-01, -17,,order,1977-11-01, +17,,order,1987-11-01, +17,,order,1985-10-01, +17,,order,1985-03-01, +17,,order,1984-02-01, +17,,order,1983-09-01, +17,,order,1982-09-01, +17,,order,1981-08-01, +17,,order,1981-03-01, +17,,order,1980-10-01, +17,stopped,,,remifentanil 2 MG Injection 17,stopped,,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet 17,stopped,,2022-11-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2022-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2022-05-01,lisinopril 10 MG Oral Tablet 17,stopped,,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2017-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2012-10-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2012-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2012-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2012-08-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2012-07-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2012-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,stopped,,2012-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,stopped,,2011-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2011-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2011-07-01,lisinopril 10 MG Oral Tablet 17,stopped,,2011-04-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2010-04-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,,2010-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2009-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2008-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2008-09-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2008-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2008-03-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,,2007-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2007-02-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2007-01-01,lisinopril 10 MG Oral Tablet 17,stopped,,2006-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2006-06-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2006-04-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,,2005-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2005-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2005-02-01,lisinopril 10 MG Oral Tablet 17,stopped,,2004-09-01,lisinopril 10 MG Oral Tablet @@ -4803,6 +5804,7 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,,2004-08-01,lisinopril 10 MG Oral Tablet 17,stopped,,2004-03-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2003-12-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,,2003-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2003-09-01,lisinopril 10 MG Oral Tablet 17,stopped,,2003-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2003-07-01,amLODIPine 2.5 MG Oral Tablet @@ -4811,12 +5813,15 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,,2002-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2002-07-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2002-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2002-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2002-01-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2001-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2001-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2001-06-01,lisinopril 10 MG Oral Tablet 17,stopped,,2001-03-01,lisinopril 10 MG Oral Tablet 17,stopped,,2000-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2000-10-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,,2000-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,2000-06-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,2000-06-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,2000-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4828,54 +5833,63 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,,1998-10-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,1998-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,1998-08-01,lisinopril 10 MG Oral Tablet +17,stopped,,1997-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,1997-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,1997-07-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,,1997-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,1997-05-01,lisinopril 10 MG Oral Tablet +17,stopped,,1997-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,,1997-02-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,1996-05-01,lisinopril 10 MG Oral Tablet 17,stopped,,1996-01-01,lisinopril 10 MG Oral Tablet 17,stopped,,1995-03-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,1993-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,,1990-02-01,Hydrochlorothiazide 25 MG Oral Tablet -17,stopped,,1989-03-01, -17,stopped,,1987-07-01, -17,stopped,,1987-02-01, -17,stopped,,1986-03-01, -17,stopped,,1985-11-01, -17,stopped,,1985-09-01, -17,stopped,,1985-01-01, -17,stopped,,1984-09-01, -17,stopped,,1984-07-01, -17,stopped,,1982-11-01, -17,stopped,,1982-07-01, -17,stopped,,1982-06-01, -17,stopped,,1981-04-01, +17,stopped,,1987-11-01, +17,stopped,,1985-06-01, +17,stopped,,1985-03-01, +17,stopped,,1985-02-01, +17,stopped,,1984-02-01, +17,stopped,,1983-10-01, +17,stopped,,1983-09-01, +17,stopped,,1983-02-01, +17,stopped,,1982-08-01, +17,stopped,,1981-03-01, +17,stopped,,1980-10-01, 17,stopped,,1979-11-01, 17,stopped,,1977-11-01, +17,stopped,order,,remifentanil 2 MG Injection 17,stopped,order,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet 17,stopped,order,2022-11-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2022-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2022-05-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2017-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2012-10-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2012-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2012-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2012-08-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2012-07-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2012-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,stopped,order,2012-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +17,stopped,order,2011-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2011-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2011-07-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2011-04-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2010-04-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,order,2010-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2009-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2008-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2008-09-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2008-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2008-03-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,order,2007-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2007-02-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2007-01-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2006-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2006-06-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2006-04-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,order,2005-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2005-09-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2005-02-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2004-09-01,lisinopril 10 MG Oral Tablet @@ -4883,6 +5897,7 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,order,2004-08-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2004-03-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2003-12-01,amLODIPine 2.5 MG Oral Tablet +17,stopped,order,2003-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2003-09-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2003-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2003-07-01,amLODIPine 2.5 MG Oral Tablet @@ -4891,12 +5906,15 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,order,2002-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2002-07-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2002-03-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2002-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2002-01-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2001-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2001-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2001-06-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2001-03-01,lisinopril 10 MG Oral Tablet 17,stopped,order,2000-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2000-10-01,Hydrochlorothiazide 25 MG Oral Tablet +17,stopped,order,2000-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,2000-06-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,2000-06-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,2000-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -4908,48 +5926,60 @@ cnt,status,intent,authoredon_month,medication_display 17,stopped,order,1998-10-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,1998-10-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,1998-08-01,lisinopril 10 MG Oral Tablet +17,stopped,order,1997-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,1997-08-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,1997-07-01,amLODIPine 2.5 MG Oral Tablet 17,stopped,order,1997-07-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,1997-05-01,lisinopril 10 MG Oral Tablet +17,stopped,order,1997-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 17,stopped,order,1997-02-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,1996-05-01,lisinopril 10 MG Oral Tablet 17,stopped,order,1996-01-01,lisinopril 10 MG Oral Tablet 17,stopped,order,1995-03-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,1993-11-01,Hydrochlorothiazide 25 MG Oral Tablet 17,stopped,order,1990-02-01,Hydrochlorothiazide 25 MG Oral Tablet -17,stopped,order,1989-03-01, -17,stopped,order,1987-07-01, -17,stopped,order,1987-02-01, -17,stopped,order,1986-03-01, -17,stopped,order,1985-11-01, -17,stopped,order,1985-09-01, -17,stopped,order,1985-01-01, -17,stopped,order,1984-09-01, -17,stopped,order,1984-07-01, -17,stopped,order,1982-11-01, -17,stopped,order,1982-07-01, -17,stopped,order,1982-06-01, -17,stopped,order,1981-04-01, +17,stopped,order,1987-11-01, +17,stopped,order,1985-06-01, +17,stopped,order,1985-03-01, +17,stopped,order,1985-02-01, +17,stopped,order,1984-02-01, +17,stopped,order,1983-10-01, +17,stopped,order,1983-09-01, +17,stopped,order,1983-02-01, +17,stopped,order,1982-08-01, +17,stopped,order,1981-03-01, +17,stopped,order,1980-10-01, 17,stopped,order,1979-11-01, 17,stopped,order,1977-11-01, 17,active,,,cetirizine hydrochloride 5 MG Oral Tablet 17,active,,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet 17,active,,2023-02-01,amLODIPine 2.5 MG Oral Tablet +17,active,,2022-03-01, 17,active,order,,cetirizine hydrochloride 5 MG Oral Tablet 17,active,order,,Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet 17,active,order,2023-02-01,amLODIPine 2.5 MG Oral Tablet +17,active,order,2022-03-01, +16,,,,predniSONE 5 MG Oral Tablet 16,,,,losartan potassium 50 MG Oral Tablet +16,,,,clonazePAM 0.25 MG Oral Tablet +16,,,,Diazepam 5 MG Oral Tablet 16,,,2019-09-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2014-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 16,,,2013-03-01,amLODIPine 2.5 MG Oral Tablet 16,,,2012-11-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,,2012-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2011-11-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2011-06-01,amLODIPine 2.5 MG Oral Tablet +16,,,2011-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2010-10-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2010-09-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,,2010-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2010-05-01,amLODIPine 2.5 MG Oral Tablet +16,,,2010-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2009-07-01,lisinopril 10 MG Oral Tablet +16,,,2009-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,,2009-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,,2008-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2008-10-01,amLODIPine 2.5 MG Oral Tablet 16,,,2008-08-01,amLODIPine 2.5 MG Oral Tablet 16,,,2008-07-01,lisinopril 10 MG Oral Tablet @@ -4957,8 +5987,12 @@ cnt,status,intent,authoredon_month,medication_display 16,,,2008-04-01,amLODIPine 2.5 MG Oral Tablet 16,,,2008-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2007-10-01,lisinopril 10 MG Oral Tablet +16,,,2007-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,,2006-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2006-05-01,lisinopril 10 MG Oral Tablet +16,,,2006-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2006-02-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,,2006-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2005-09-01,lisinopril 10 MG Oral Tablet 16,,,2005-03-01,lisinopril 10 MG Oral Tablet 16,,,2004-12-01,amLODIPine 2.5 MG Oral Tablet @@ -4966,8 +6000,11 @@ cnt,status,intent,authoredon_month,medication_display 16,,,2004-04-01,lisinopril 10 MG Oral Tablet 16,,,2004-04-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2004-02-01,lisinopril 10 MG Oral Tablet +16,,,2003-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,,2003-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2003-04-01,lisinopril 10 MG Oral Tablet 16,,,2003-03-01,amLODIPine 2.5 MG Oral Tablet +16,,,2002-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2002-07-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,2002-05-01,amLODIPine 2.5 MG Oral Tablet 16,,,2002-02-01,amLODIPine 2.5 MG Oral Tablet @@ -4977,6 +6014,7 @@ cnt,status,intent,authoredon_month,medication_display 16,,,2001-06-01,amLODIPine 2.5 MG Oral Tablet 16,,,2001-05-01,amLODIPine 2.5 MG Oral Tablet 16,,,2001-04-01,lisinopril 10 MG Oral Tablet +16,,,2000-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,2000-09-01,amLODIPine 2.5 MG Oral Tablet 16,,,2000-08-01,amLODIPine 2.5 MG Oral Tablet 16,,,2000-05-01,lisinopril 10 MG Oral Tablet @@ -4986,38 +6024,48 @@ cnt,status,intent,authoredon_month,medication_display 16,,,1998-02-01,lisinopril 10 MG Oral Tablet 16,,,1998-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,,1997-12-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,,1997-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,,1997-02-01,lisinopril 10 MG Oral Tablet 16,,,1996-03-01,Hydrochlorothiazide 25 MG Oral Tablet -16,,,1995-12-01, 16,,,1995-09-01,lisinopril 10 MG Oral Tablet 16,,,1992-10-01,lisinopril 10 MG Oral Tablet 16,,,1990-08-01,lisinopril 10 MG Oral Tablet -16,,,1989-11-01, 16,,,1988-06-01,amLODIPine 2.5 MG Oral Tablet -16,,,1988-03-01, -16,,,1986-11-01, -16,,,1986-10-01, +16,,,1987-03-01, 16,,,1986-09-01,lisinopril 10 MG Oral Tablet -16,,,1986-02-01, -16,,,1985-07-01, -16,,,1985-06-01, -16,,,1984-06-01, -16,,,1982-04-01, -16,,,1981-07-01, -16,,,1981-03-01, -16,,,1980-10-01, +16,,,1984-10-01, +16,,,1983-01-01, +16,,,1982-10-01, +16,,,1982-01-01, +16,,,1981-12-01, +16,,,1981-05-01, +16,,,1981-02-01, +16,,,1980-08-01, +16,,,1979-07-01, +16,,,1979-04-01, 16,,,1978-11-01, +16,,,1978-10-01, +16,,order,,predniSONE 5 MG Oral Tablet 16,,order,,losartan potassium 50 MG Oral Tablet +16,,order,,clonazePAM 0.25 MG Oral Tablet +16,,order,,Diazepam 5 MG Oral Tablet 16,,order,2019-09-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2014-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 16,,order,2013-03-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2012-11-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,order,2012-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2011-11-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2011-06-01,amLODIPine 2.5 MG Oral Tablet +16,,order,2011-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2010-10-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2010-09-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,order,2010-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2010-05-01,amLODIPine 2.5 MG Oral Tablet +16,,order,2010-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2009-07-01,lisinopril 10 MG Oral Tablet +16,,order,2009-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,order,2009-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,order,2008-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2008-10-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2008-08-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2008-07-01,lisinopril 10 MG Oral Tablet @@ -5025,8 +6073,12 @@ cnt,status,intent,authoredon_month,medication_display 16,,order,2008-04-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2008-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2007-10-01,lisinopril 10 MG Oral Tablet +16,,order,2007-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,order,2006-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2006-05-01,lisinopril 10 MG Oral Tablet +16,,order,2006-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2006-02-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,order,2006-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2005-09-01,lisinopril 10 MG Oral Tablet 16,,order,2005-03-01,lisinopril 10 MG Oral Tablet 16,,order,2004-12-01,amLODIPine 2.5 MG Oral Tablet @@ -5034,8 +6086,11 @@ cnt,status,intent,authoredon_month,medication_display 16,,order,2004-04-01,lisinopril 10 MG Oral Tablet 16,,order,2004-04-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2004-02-01,lisinopril 10 MG Oral Tablet +16,,order,2003-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,,order,2003-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2003-04-01,lisinopril 10 MG Oral Tablet 16,,order,2003-03-01,amLODIPine 2.5 MG Oral Tablet +16,,order,2002-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2002-07-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,2002-05-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2002-02-01,amLODIPine 2.5 MG Oral Tablet @@ -5045,6 +6100,7 @@ cnt,status,intent,authoredon_month,medication_display 16,,order,2001-06-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2001-05-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2001-04-01,lisinopril 10 MG Oral Tablet +16,,order,2000-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,2000-09-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2000-08-01,amLODIPine 2.5 MG Oral Tablet 16,,order,2000-05-01,lisinopril 10 MG Oral Tablet @@ -5054,27 +6110,28 @@ cnt,status,intent,authoredon_month,medication_display 16,,order,1998-02-01,lisinopril 10 MG Oral Tablet 16,,order,1998-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,,order,1997-12-01,Hydrochlorothiazide 25 MG Oral Tablet +16,,order,1997-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,,order,1997-02-01,lisinopril 10 MG Oral Tablet 16,,order,1996-03-01,Hydrochlorothiazide 25 MG Oral Tablet -16,,order,1995-12-01, 16,,order,1995-09-01,lisinopril 10 MG Oral Tablet 16,,order,1992-10-01,lisinopril 10 MG Oral Tablet 16,,order,1990-08-01,lisinopril 10 MG Oral Tablet -16,,order,1989-11-01, 16,,order,1988-06-01,amLODIPine 2.5 MG Oral Tablet -16,,order,1988-03-01, -16,,order,1986-11-01, -16,,order,1986-10-01, +16,,order,1987-03-01, 16,,order,1986-09-01,lisinopril 10 MG Oral Tablet -16,,order,1986-02-01, -16,,order,1985-07-01, -16,,order,1985-06-01, -16,,order,1984-06-01, -16,,order,1982-04-01, -16,,order,1981-07-01, -16,,order,1981-03-01, -16,,order,1980-10-01, +16,,order,1984-10-01, +16,,order,1983-01-01, +16,,order,1982-10-01, +16,,order,1982-01-01, +16,,order,1981-12-01, +16,,order,1981-05-01, +16,,order,1981-02-01, +16,,order,1980-08-01, +16,,order,1979-07-01, +16,,order,1979-04-01, 16,,order,1978-11-01, +16,,order,1978-10-01, +16,stopped,,,predniSONE 5 MG Oral Tablet 16,stopped,,,Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet 16,stopped,,2023-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2023-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5083,13 +6140,21 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,,2019-09-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2013-03-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2012-11-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,,2012-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2011-11-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2011-06-01,amLODIPine 2.5 MG Oral Tablet +16,stopped,,2011-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,,2010-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2010-10-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2010-09-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,,2010-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2010-07-01,lisinopril 10 MG Oral Tablet 16,stopped,,2010-07-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,,2010-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2009-07-01,lisinopril 10 MG Oral Tablet +16,stopped,,2009-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,,2009-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,,2008-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2008-10-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2008-08-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2008-07-01,lisinopril 10 MG Oral Tablet @@ -5097,7 +6162,11 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,,2008-04-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2008-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2007-10-01,lisinopril 10 MG Oral Tablet +16,stopped,,2007-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,,2006-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,,2006-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2006-02-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,,2006-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2005-09-01,lisinopril 10 MG Oral Tablet 16,stopped,,2005-03-01,lisinopril 10 MG Oral Tablet 16,stopped,,2004-12-01,amLODIPine 2.5 MG Oral Tablet @@ -5105,8 +6174,10 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,,2004-04-01,lisinopril 10 MG Oral Tablet 16,stopped,,2004-04-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2004-02-01,lisinopril 10 MG Oral Tablet +16,stopped,,2003-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2003-04-01,lisinopril 10 MG Oral Tablet 16,stopped,,2003-02-01,amLODIPine 2.5 MG Oral Tablet +16,stopped,,2002-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2002-07-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,2002-05-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2002-02-01,amLODIPine 2.5 MG Oral Tablet @@ -5115,6 +6186,7 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,,2001-06-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2001-05-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2001-04-01,lisinopril 10 MG Oral Tablet +16,stopped,,2000-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,2000-10-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2000-09-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,,2000-08-01,amLODIPine 2.5 MG Oral Tablet @@ -5126,28 +6198,26 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,,1998-02-01,lisinopril 10 MG Oral Tablet 16,stopped,,1998-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,,1997-12-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,,1997-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,,1997-02-01,lisinopril 10 MG Oral Tablet 16,stopped,,1996-03-01,Hydrochlorothiazide 25 MG Oral Tablet -16,stopped,,1995-12-01, 16,stopped,,1995-09-01,lisinopril 10 MG Oral Tablet 16,stopped,,1992-10-01,lisinopril 10 MG Oral Tablet 16,stopped,,1991-05-01,lisinopril 10 MG Oral Tablet 16,stopped,,1990-08-01,lisinopril 10 MG Oral Tablet -16,stopped,,1990-03-01, -16,stopped,,1989-11-01, 16,stopped,,1988-06-01,amLODIPine 2.5 MG Oral Tablet -16,stopped,,1988-03-01, -16,stopped,,1986-10-01, 16,stopped,,1986-09-01,lisinopril 10 MG Oral Tablet -16,stopped,,1986-02-01, -16,stopped,,1985-07-01, -16,stopped,,1984-06-01, -16,stopped,,1983-03-01, -16,stopped,,1982-05-01, -16,stopped,,1982-04-01, -16,stopped,,1981-03-01, -16,stopped,,1980-10-01, +16,stopped,,1985-10-01, +16,stopped,,1983-01-01, +16,stopped,,1982-10-01, +16,stopped,,1982-09-01, +16,stopped,,1982-01-01, +16,stopped,,1981-08-01, +16,stopped,,1981-07-01, +16,stopped,,1980-08-01, +16,stopped,,1979-04-01, 16,stopped,,1978-11-01, +16,stopped,order,,predniSONE 5 MG Oral Tablet 16,stopped,order,,Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet 16,stopped,order,2023-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2023-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5156,13 +6226,21 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,order,2019-09-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2013-03-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2012-11-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,order,2012-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2011-11-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2011-06-01,amLODIPine 2.5 MG Oral Tablet +16,stopped,order,2011-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,order,2010-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2010-10-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2010-09-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,order,2010-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2010-07-01,lisinopril 10 MG Oral Tablet 16,stopped,order,2010-07-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,order,2010-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2009-07-01,lisinopril 10 MG Oral Tablet +16,stopped,order,2009-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,order,2009-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,order,2008-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2008-10-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2008-08-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2008-07-01,lisinopril 10 MG Oral Tablet @@ -5170,7 +6248,11 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,order,2008-04-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2008-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2007-10-01,lisinopril 10 MG Oral Tablet +16,stopped,order,2007-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,order,2006-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +16,stopped,order,2006-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2006-02-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,order,2006-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2005-09-01,lisinopril 10 MG Oral Tablet 16,stopped,order,2005-03-01,lisinopril 10 MG Oral Tablet 16,stopped,order,2004-12-01,amLODIPine 2.5 MG Oral Tablet @@ -5178,8 +6260,10 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,order,2004-04-01,lisinopril 10 MG Oral Tablet 16,stopped,order,2004-04-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2004-02-01,lisinopril 10 MG Oral Tablet +16,stopped,order,2003-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2003-04-01,lisinopril 10 MG Oral Tablet 16,stopped,order,2003-02-01,amLODIPine 2.5 MG Oral Tablet +16,stopped,order,2002-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2002-07-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,2002-05-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2002-02-01,amLODIPine 2.5 MG Oral Tablet @@ -5188,6 +6272,7 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,order,2001-06-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2001-05-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2001-04-01,lisinopril 10 MG Oral Tablet +16,stopped,order,2000-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,2000-10-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2000-09-01,amLODIPine 2.5 MG Oral Tablet 16,stopped,order,2000-08-01,amLODIPine 2.5 MG Oral Tablet @@ -5199,36 +6284,40 @@ cnt,status,intent,authoredon_month,medication_display 16,stopped,order,1998-02-01,lisinopril 10 MG Oral Tablet 16,stopped,order,1998-02-01,Hydrochlorothiazide 25 MG Oral Tablet 16,stopped,order,1997-12-01,Hydrochlorothiazide 25 MG Oral Tablet +16,stopped,order,1997-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 16,stopped,order,1997-02-01,lisinopril 10 MG Oral Tablet 16,stopped,order,1996-03-01,Hydrochlorothiazide 25 MG Oral Tablet -16,stopped,order,1995-12-01, 16,stopped,order,1995-09-01,lisinopril 10 MG Oral Tablet 16,stopped,order,1992-10-01,lisinopril 10 MG Oral Tablet 16,stopped,order,1991-05-01,lisinopril 10 MG Oral Tablet 16,stopped,order,1990-08-01,lisinopril 10 MG Oral Tablet -16,stopped,order,1990-03-01, -16,stopped,order,1989-11-01, 16,stopped,order,1988-06-01,amLODIPine 2.5 MG Oral Tablet -16,stopped,order,1988-03-01, -16,stopped,order,1986-10-01, 16,stopped,order,1986-09-01,lisinopril 10 MG Oral Tablet -16,stopped,order,1986-02-01, -16,stopped,order,1985-07-01, -16,stopped,order,1984-06-01, -16,stopped,order,1983-03-01, -16,stopped,order,1982-05-01, -16,stopped,order,1982-04-01, -16,stopped,order,1981-03-01, -16,stopped,order,1980-10-01, +16,stopped,order,1985-10-01, +16,stopped,order,1983-01-01, +16,stopped,order,1982-10-01, +16,stopped,order,1982-09-01, +16,stopped,order,1982-01-01, +16,stopped,order,1981-08-01, +16,stopped,order,1981-07-01, +16,stopped,order,1980-08-01, +16,stopped,order,1979-04-01, 16,stopped,order,1978-11-01, 16,active,,,losartan potassium 50 MG Oral Tablet -16,active,,2022-03-01, 16,active,order,,losartan potassium 50 MG Oral Tablet -16,active,order,2022-03-01, +15,,,,carbamazepine 20 MG/ML Oral Suspension [Tegretol] +15,,,,Acetaminophen 300 MG / HYDROcodone Bitartrate 5 MG Oral Tablet +15,,,2013-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2011-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2011-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2010-11-01,amLODIPine 2.5 MG Oral Tablet 15,,,2010-11-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2010-09-01,amLODIPine 2.5 MG Oral Tablet +15,,,2010-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2010-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2009-11-01,Hydrochlorothiazide 25 MG Oral Tablet +15,,,2009-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2008-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2008-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2008-05-01,amLODIPine 2.5 MG Oral Tablet 15,,,2008-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5236,11 +6325,17 @@ cnt,status,intent,authoredon_month,medication_display 15,,,2007-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2007-01-01,amLODIPine 2.5 MG Oral Tablet 15,,,2006-09-01,amLODIPine 2.5 MG Oral Tablet +15,,,2006-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2005-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2005-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2005-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2005-05-01,lisinopril 10 MG Oral Tablet 15,,,2005-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2005-01-01,Hydrochlorothiazide 25 MG Oral Tablet +15,,,2004-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2004-10-01,amLODIPine 2.5 MG Oral Tablet +15,,,2004-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,2004-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2004-07-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2004-06-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,2004-03-01,amLODIPine 2.5 MG Oral Tablet @@ -5255,9 +6350,12 @@ cnt,status,intent,authoredon_month,medication_display 15,,,2001-10-01,amLODIPine 2.5 MG Oral Tablet 15,,,2001-07-01,lisinopril 10 MG Oral Tablet 15,,,2001-02-01,amLODIPine 2.5 MG Oral Tablet +15,,,2000-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,2000-05-01,amLODIPine 2.5 MG Oral Tablet 15,,,1999-12-01,lisinopril 10 MG Oral Tablet 15,,,1999-11-01,lisinopril 10 MG Oral Tablet +15,,,1999-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,1999-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,1999-02-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,,1998-07-01,lisinopril 10 MG Oral Tablet 15,,,1998-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5270,6 +6368,7 @@ cnt,status,intent,authoredon_month,medication_display 15,,,1997-02-01,amLODIPine 2.5 MG Oral Tablet 15,,,1996-03-01,lisinopril 10 MG Oral Tablet 15,,,1994-07-01,lisinopril 10 MG Oral Tablet +15,,,1994-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,,1993-11-01,lisinopril 10 MG Oral Tablet 15,,,1993-03-01,lisinopril 10 MG Oral Tablet 15,,,1992-07-01,lisinopril 10 MG Oral Tablet @@ -5283,26 +6382,26 @@ cnt,status,intent,authoredon_month,medication_display 15,,,1989-12-01,lisinopril 10 MG Oral Tablet 15,,,1989-05-01,lisinopril 10 MG Oral Tablet 15,,,1988-06-01,lisinopril 10 MG Oral Tablet -15,,,1987-11-01, -15,,,1985-04-01, -15,,,1985-03-01, -15,,,1984-10-01, -15,,,1984-04-01, -15,,,1983-10-01, -15,,,1983-04-01, -15,,,1983-02-01, -15,,,1982-09-01, -15,,,1982-08-01, -15,,,1982-01-01, -15,,,1981-02-01, +15,,,1988-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,,1980-06-01, 15,,,1980-03-01, -15,,,1979-07-01, -15,,,1979-04-01, +15,,,1979-08-01, +15,,,1978-08-01, 15,,,1977-09-01, +15,,,1976-12-01, +15,,order,,carbamazepine 20 MG/ML Oral Suspension [Tegretol] +15,,order,,Acetaminophen 300 MG / HYDROcodone Bitartrate 5 MG Oral Tablet +15,,order,2013-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2011-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2011-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2010-11-01,amLODIPine 2.5 MG Oral Tablet 15,,order,2010-11-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2010-09-01,amLODIPine 2.5 MG Oral Tablet +15,,order,2010-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2010-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2009-11-01,Hydrochlorothiazide 25 MG Oral Tablet +15,,order,2009-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2008-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2008-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2008-05-01,amLODIPine 2.5 MG Oral Tablet 15,,order,2008-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5310,11 +6409,17 @@ cnt,status,intent,authoredon_month,medication_display 15,,order,2007-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2007-01-01,amLODIPine 2.5 MG Oral Tablet 15,,order,2006-09-01,amLODIPine 2.5 MG Oral Tablet +15,,order,2006-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2005-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2005-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2005-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2005-05-01,lisinopril 10 MG Oral Tablet 15,,order,2005-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2005-01-01,Hydrochlorothiazide 25 MG Oral Tablet +15,,order,2004-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2004-10-01,amLODIPine 2.5 MG Oral Tablet +15,,order,2004-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,2004-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2004-07-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2004-06-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,2004-03-01,amLODIPine 2.5 MG Oral Tablet @@ -5329,9 +6434,12 @@ cnt,status,intent,authoredon_month,medication_display 15,,order,2001-10-01,amLODIPine 2.5 MG Oral Tablet 15,,order,2001-07-01,lisinopril 10 MG Oral Tablet 15,,order,2001-02-01,amLODIPine 2.5 MG Oral Tablet +15,,order,2000-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,2000-05-01,amLODIPine 2.5 MG Oral Tablet 15,,order,1999-12-01,lisinopril 10 MG Oral Tablet 15,,order,1999-11-01,lisinopril 10 MG Oral Tablet +15,,order,1999-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,1999-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,1999-02-01,Hydrochlorothiazide 25 MG Oral Tablet 15,,order,1998-07-01,lisinopril 10 MG Oral Tablet 15,,order,1998-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5344,6 +6452,7 @@ cnt,status,intent,authoredon_month,medication_display 15,,order,1997-02-01,amLODIPine 2.5 MG Oral Tablet 15,,order,1996-03-01,lisinopril 10 MG Oral Tablet 15,,order,1994-07-01,lisinopril 10 MG Oral Tablet +15,,order,1994-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,,order,1993-11-01,lisinopril 10 MG Oral Tablet 15,,order,1993-03-01,lisinopril 10 MG Oral Tablet 15,,order,1992-07-01,lisinopril 10 MG Oral Tablet @@ -5357,32 +6466,29 @@ cnt,status,intent,authoredon_month,medication_display 15,,order,1989-12-01,lisinopril 10 MG Oral Tablet 15,,order,1989-05-01,lisinopril 10 MG Oral Tablet 15,,order,1988-06-01,lisinopril 10 MG Oral Tablet -15,,order,1987-11-01, -15,,order,1985-04-01, -15,,order,1985-03-01, -15,,order,1984-10-01, -15,,order,1984-04-01, -15,,order,1983-10-01, -15,,order,1983-04-01, -15,,order,1983-02-01, -15,,order,1982-09-01, -15,,order,1982-08-01, -15,,order,1982-01-01, -15,,order,1981-02-01, +15,,order,1988-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,,order,1980-06-01, 15,,order,1980-03-01, -15,,order,1979-07-01, -15,,order,1979-04-01, +15,,order,1979-08-01, +15,,order,1978-08-01, 15,,order,1977-09-01, +15,,order,1976-12-01, 15,stopped,,,carvedilol 25 MG Oral Tablet +15,stopped,,,Acetaminophen 300 MG / HYDROcodone Bitartrate 5 MG Oral Tablet 15,stopped,,2023-01-01,lisinopril 10 MG Oral Tablet 15,stopped,,2022-12-01,lisinopril 10 MG Oral Tablet 15,stopped,,2022-12-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2022-09-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,,2013-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,2011-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2010-11-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2010-11-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2010-09-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,,2010-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2010-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2009-11-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,,2009-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,2008-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2008-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2008-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2008-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5390,16 +6496,23 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,,2007-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2007-01-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2006-09-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,,2006-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2006-05-01,lisinopril 10 MG Oral Tablet +15,stopped,,2005-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,2005-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2005-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2005-05-01,lisinopril 10 MG Oral Tablet 15,stopped,,2005-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2005-01-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,,2004-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2004-10-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,,2004-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,2004-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2004-07-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2004-06-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2004-03-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2004-01-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,,2003-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2003-09-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,2003-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,2003-07-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5412,9 +6525,12 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,,2001-09-01,lisinopril 10 MG Oral Tablet 15,stopped,,2001-07-01,lisinopril 10 MG Oral Tablet 15,stopped,,2001-02-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,,2000-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,2000-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,1999-12-01,lisinopril 10 MG Oral Tablet 15,stopped,,1999-11-01,lisinopril 10 MG Oral Tablet +15,stopped,,1999-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,1999-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,1999-02-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,,1998-07-01,lisinopril 10 MG Oral Tablet 15,stopped,,1998-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5426,6 +6542,7 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,,1997-02-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,,1996-03-01,lisinopril 10 MG Oral Tablet 15,stopped,,1994-07-01,lisinopril 10 MG Oral Tablet +15,stopped,,1994-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,,1992-07-01,lisinopril 10 MG Oral Tablet 15,stopped,,1991-08-01,lisinopril 10 MG Oral Tablet 15,stopped,,1991-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5436,29 +6553,34 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,,1989-12-01,lisinopril 10 MG Oral Tablet 15,stopped,,1989-05-01,lisinopril 10 MG Oral Tablet 15,stopped,,1988-06-01,lisinopril 10 MG Oral Tablet -15,stopped,,1987-11-01, -15,stopped,,1986-11-01, -15,stopped,,1985-04-01, -15,stopped,,1985-03-01, -15,stopped,,1984-04-01, -15,stopped,,1983-10-01, -15,stopped,,1983-04-01, -15,stopped,,1982-01-01, -15,stopped,,1981-07-01, +15,stopped,,1988-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,,1987-03-01, +15,stopped,,1984-10-01, +15,stopped,,1981-12-01, +15,stopped,,1981-05-01, +15,stopped,,1981-02-01, +15,stopped,,1980-06-01, 15,stopped,,1980-03-01, 15,stopped,,1979-07-01, -15,stopped,,1979-04-01, +15,stopped,,1978-10-01, +15,stopped,,1978-08-01, 15,stopped,,1977-09-01, 15,stopped,order,,carvedilol 25 MG Oral Tablet +15,stopped,order,,Acetaminophen 300 MG / HYDROcodone Bitartrate 5 MG Oral Tablet 15,stopped,order,2023-01-01,lisinopril 10 MG Oral Tablet 15,stopped,order,2022-12-01,lisinopril 10 MG Oral Tablet 15,stopped,order,2022-12-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2022-09-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,order,2013-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,2011-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2010-11-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2010-11-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2010-09-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,order,2010-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2010-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2009-11-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,order,2009-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,2008-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2008-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2008-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2008-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5466,16 +6588,23 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,order,2007-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2007-01-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2006-09-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,order,2006-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2006-05-01,lisinopril 10 MG Oral Tablet +15,stopped,order,2005-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,2005-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2005-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2005-05-01,lisinopril 10 MG Oral Tablet 15,stopped,order,2005-05-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2005-01-01,Hydrochlorothiazide 25 MG Oral Tablet +15,stopped,order,2004-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2004-10-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,order,2004-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,2004-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2004-07-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2004-06-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2004-03-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2004-01-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,order,2003-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2003-09-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,2003-08-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,2003-07-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5488,9 +6617,12 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,order,2001-09-01,lisinopril 10 MG Oral Tablet 15,stopped,order,2001-07-01,lisinopril 10 MG Oral Tablet 15,stopped,order,2001-02-01,amLODIPine 2.5 MG Oral Tablet +15,stopped,order,2000-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,2000-05-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,1999-12-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1999-11-01,lisinopril 10 MG Oral Tablet +15,stopped,order,1999-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,1999-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,1999-02-01,Hydrochlorothiazide 25 MG Oral Tablet 15,stopped,order,1998-07-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1998-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5502,6 +6634,7 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,order,1997-02-01,amLODIPine 2.5 MG Oral Tablet 15,stopped,order,1996-03-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1994-07-01,lisinopril 10 MG Oral Tablet +15,stopped,order,1994-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 15,stopped,order,1992-07-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1991-08-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1991-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5512,18 +6645,17 @@ cnt,status,intent,authoredon_month,medication_display 15,stopped,order,1989-12-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1989-05-01,lisinopril 10 MG Oral Tablet 15,stopped,order,1988-06-01,lisinopril 10 MG Oral Tablet -15,stopped,order,1987-11-01, -15,stopped,order,1986-11-01, -15,stopped,order,1985-04-01, -15,stopped,order,1985-03-01, -15,stopped,order,1984-04-01, -15,stopped,order,1983-10-01, -15,stopped,order,1983-04-01, -15,stopped,order,1982-01-01, -15,stopped,order,1981-07-01, +15,stopped,order,1988-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +15,stopped,order,1987-03-01, +15,stopped,order,1984-10-01, +15,stopped,order,1981-12-01, +15,stopped,order,1981-05-01, +15,stopped,order,1981-02-01, +15,stopped,order,1980-06-01, 15,stopped,order,1980-03-01, 15,stopped,order,1979-07-01, -15,stopped,order,1979-04-01, +15,stopped,order,1978-10-01, +15,stopped,order,1978-08-01, 15,stopped,order,1977-09-01, 15,active,,2022-12-01,amLODIPine 2.5 MG Oral Tablet 15,active,,2022-09-01,lisinopril 10 MG Oral Tablet @@ -5533,31 +6665,50 @@ cnt,status,intent,authoredon_month,medication_display 15,active,order,2022-09-01,lisinopril 10 MG Oral Tablet 15,active,order,2022-09-01,Hydrochlorothiazide 25 MG Oral Tablet 15,active,order,2022-05-01,lisinopril 10 MG Oral Tablet +14,,,,"heparin sodium, porcine 100 UNT/ML Injectable Solution" 14,,,,Chlorpheniramine Maleate 2 MG/ML Oral Solution 14,,,2023-02-01,Simvastatin 10 MG Oral Tablet +14,,,2022-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 14,,,2017-01-01,Simvastatin 10 MG Oral Tablet 14,,,2016-01-01,Simvastatin 10 MG Oral Tablet 14,,,2013-06-01,amLODIPine 2.5 MG Oral Tablet +14,,,2013-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2012-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2012-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2011-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2011-02-01,amLODIPine 2.5 MG Oral Tablet 14,,,2010-07-01,amLODIPine 2.5 MG Oral Tablet 14,,,2009-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2008-10-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,,2008-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2008-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2007-08-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2007-07-01,amLODIPine 2.5 MG Oral Tablet +14,,,2007-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2007-02-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,,2006-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2006-11-01,amLODIPine 2.5 MG Oral Tablet +14,,,2006-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2006-08-01,amLODIPine 2.5 MG Oral Tablet 14,,,2006-07-01,amLODIPine 2.5 MG Oral Tablet 14,,,2006-05-01,amLODIPine 2.5 MG Oral Tablet +14,,,2006-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2005-11-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,,2005-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2005-08-01,amLODIPine 2.5 MG Oral Tablet 14,,,2005-03-01,amLODIPine 2.5 MG Oral Tablet 14,,,2005-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2005-01-01,amLODIPine 2.5 MG Oral Tablet +14,,,2004-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2004-06-01,amLODIPine 2.5 MG Oral Tablet +14,,,2004-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2004-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2003-09-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,,2003-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,,2003-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2003-04-01,amLODIPine 2.5 MG Oral Tablet 14,,,2003-01-01,amLODIPine 2.5 MG Oral Tablet +14,,,2002-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2002-01-01,amLODIPine 2.5 MG Oral Tablet 14,,,2001-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2001-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5568,6 +6719,7 @@ cnt,status,intent,authoredon_month,medication_display 14,,,2001-02-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2001-01-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2000-12-01,lisinopril 10 MG Oral Tablet +14,,,2000-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,2000-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,2000-02-01,amLODIPine 2.5 MG Oral Tablet 14,,,2000-01-01,lisinopril 10 MG Oral Tablet @@ -5583,6 +6735,7 @@ cnt,status,intent,authoredon_month,medication_display 14,,,1998-04-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1998-01-01,amLODIPine 2.5 MG Oral Tablet 14,,,1997-09-01,lisinopril 10 MG Oral Tablet +14,,,1997-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,1997-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1997-01-01,amLODIPine 2.5 MG Oral Tablet 14,,,1996-06-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5596,19 +6749,23 @@ cnt,status,intent,authoredon_month,medication_display 14,,,1995-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1995-04-01,amLODIPine 2.5 MG Oral Tablet 14,,,1995-04-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,,1994-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,1994-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1994-08-01,amLODIPine 2.5 MG Oral Tablet 14,,,1994-07-01,amLODIPine 2.5 MG Oral Tablet 14,,,1994-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1993-11-01,amLODIPine 2.5 MG Oral Tablet 14,,,1993-10-01,amLODIPine 2.5 MG Oral Tablet +14,,,1993-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,1993-09-01,amLODIPine 2.5 MG Oral Tablet 14,,,1993-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,,1993-06-01,lisinopril 10 MG Oral Tablet +14,,,1993-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,1993-01-01,lisinopril 10 MG Oral Tablet 14,,,1992-09-01,lisinopril 10 MG Oral Tablet 14,,,1991-12-01,lisinopril 10 MG Oral Tablet 14,,,1991-10-01,lisinopril 10 MG Oral Tablet +14,,,1991-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,,1990-05-01,lisinopril 10 MG Oral Tablet 14,,,1990-01-01,lisinopril 10 MG Oral Tablet 14,,,1990-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5619,55 +6776,67 @@ cnt,status,intent,authoredon_month,medication_display 14,,,1988-04-01,lisinopril 10 MG Oral Tablet 14,,,1987-09-01,lisinopril 10 MG Oral Tablet 14,,,1986-09-01,Hydrochlorothiazide 25 MG Oral Tablet -14,,,1985-10-01, -14,,,1985-02-01, -14,,,1984-02-01, -14,,,1984-01-01, -14,,,1983-09-01, -14,,,1983-08-01, -14,,,1983-01-01, -14,,,1982-10-01, -14,,,1981-12-01, -14,,,1981-05-01, +14,,,1981-10-01, +14,,,1981-09-01, +14,,,1981-06-01, +14,,,1981-01-01, +14,,,1980-12-01, 14,,,1980-11-01,Hydrochlorothiazide 25 MG Oral Tablet -14,,,1980-08-01, -14,,,1980-06-01, -14,,,1979-08-01, +14,,,1980-09-01, 14,,,1979-05-01, -14,,,1978-10-01, 14,,,1978-09-01, -14,,,1978-08-01, 14,,,1978-04-01, 14,,,1977-12-01, -14,,,1976-12-01, +14,,,1976-11-01, 14,,,1976-09-01, 14,,,1976-06-01, +14,,,1975-09-01, +14,,,1974-03-01, 14,,,1972-10-01, +14,,order,,"heparin sodium, porcine 100 UNT/ML Injectable Solution" 14,,order,,Chlorpheniramine Maleate 2 MG/ML Oral Solution 14,,order,2023-02-01,Simvastatin 10 MG Oral Tablet +14,,order,2022-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 14,,order,2017-01-01,Simvastatin 10 MG Oral Tablet 14,,order,2016-01-01,Simvastatin 10 MG Oral Tablet 14,,order,2013-06-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2013-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2012-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2012-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2011-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2011-02-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2010-07-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2009-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2008-10-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,order,2008-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2008-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2007-08-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2007-07-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2007-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2007-02-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,order,2006-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2006-11-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2006-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2006-08-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2006-07-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2006-05-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2006-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2005-11-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,order,2005-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2005-08-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2005-03-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2005-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2005-01-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2004-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2004-06-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2004-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2004-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2003-09-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,order,2003-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,,order,2003-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2003-04-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2003-01-01,amLODIPine 2.5 MG Oral Tablet +14,,order,2002-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2002-01-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2001-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2001-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5678,6 +6847,7 @@ cnt,status,intent,authoredon_month,medication_display 14,,order,2001-02-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2001-01-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2000-12-01,lisinopril 10 MG Oral Tablet +14,,order,2000-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,2000-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,2000-02-01,amLODIPine 2.5 MG Oral Tablet 14,,order,2000-01-01,lisinopril 10 MG Oral Tablet @@ -5693,6 +6863,7 @@ cnt,status,intent,authoredon_month,medication_display 14,,order,1998-04-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1998-01-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1997-09-01,lisinopril 10 MG Oral Tablet +14,,order,1997-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,1997-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1997-01-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1996-06-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5706,19 +6877,23 @@ cnt,status,intent,authoredon_month,medication_display 14,,order,1995-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1995-04-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1995-04-01,Hydrochlorothiazide 25 MG Oral Tablet +14,,order,1994-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,1994-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1994-08-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1994-07-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1994-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1993-11-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1993-10-01,amLODIPine 2.5 MG Oral Tablet +14,,order,1993-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,1993-09-01,amLODIPine 2.5 MG Oral Tablet 14,,order,1993-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,,order,1993-06-01,lisinopril 10 MG Oral Tablet +14,,order,1993-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,1993-01-01,lisinopril 10 MG Oral Tablet 14,,order,1992-09-01,lisinopril 10 MG Oral Tablet 14,,order,1991-12-01,lisinopril 10 MG Oral Tablet 14,,order,1991-10-01,lisinopril 10 MG Oral Tablet +14,,order,1991-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,,order,1990-05-01,lisinopril 10 MG Oral Tablet 14,,order,1990-01-01,lisinopril 10 MG Oral Tablet 14,,order,1990-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5729,30 +6904,25 @@ cnt,status,intent,authoredon_month,medication_display 14,,order,1988-04-01,lisinopril 10 MG Oral Tablet 14,,order,1987-09-01,lisinopril 10 MG Oral Tablet 14,,order,1986-09-01,Hydrochlorothiazide 25 MG Oral Tablet -14,,order,1985-10-01, -14,,order,1985-02-01, -14,,order,1984-02-01, -14,,order,1984-01-01, -14,,order,1983-09-01, -14,,order,1983-08-01, -14,,order,1983-01-01, -14,,order,1982-10-01, -14,,order,1981-12-01, -14,,order,1981-05-01, +14,,order,1981-10-01, +14,,order,1981-09-01, +14,,order,1981-06-01, +14,,order,1981-01-01, +14,,order,1980-12-01, 14,,order,1980-11-01,Hydrochlorothiazide 25 MG Oral Tablet -14,,order,1980-08-01, -14,,order,1980-06-01, -14,,order,1979-08-01, +14,,order,1980-09-01, 14,,order,1979-05-01, -14,,order,1978-10-01, 14,,order,1978-09-01, -14,,order,1978-08-01, 14,,order,1978-04-01, 14,,order,1977-12-01, -14,,order,1976-12-01, +14,,order,1976-11-01, 14,,order,1976-09-01, 14,,order,1976-06-01, +14,,order,1975-09-01, +14,,order,1974-03-01, 14,,order,1972-10-01, +14,stopped,,,"heparin sodium, porcine 100 UNT/ML Injectable Solution" +14,stopped,,,Galantamine 4 MG Oral Tablet 14,stopped,,2022-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,2022-09-01,lisinopril 10 MG Oral Tablet 14,stopped,,2022-08-01,lisinopril 10 MG Oral Tablet @@ -5760,24 +6930,43 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,,2017-01-01,Simvastatin 10 MG Oral Tablet 14,stopped,,2016-01-01,Simvastatin 10 MG Oral Tablet 14,stopped,,2013-06-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2013-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2012-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2012-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2011-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2011-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2010-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2010-07-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2009-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,2008-10-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,,2008-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2008-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2007-08-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,2007-07-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2007-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2007-02-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,,2006-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2006-11-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2006-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2006-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2006-07-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2006-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2005-11-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,,2005-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2005-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2005-03-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2005-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,2005-01-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2004-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2004-06-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2004-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2004-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2003-09-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,,2003-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,,2003-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2003-04-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2003-01-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,,2002-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,2002-01-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,2001-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,2001-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5801,6 +6990,7 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,,1998-04-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,1998-01-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,1997-09-01,lisinopril 10 MG Oral Tablet +14,stopped,,1997-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,1997-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,1997-03-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,1997-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5815,6 +7005,7 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,,1995-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,1995-04-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,1995-04-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,,1994-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,1994-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,1994-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,1994-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5823,12 +7014,14 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,,1993-10-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,,1993-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,,1993-06-01,lisinopril 10 MG Oral Tablet +14,stopped,,1993-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,1993-03-01,lisinopril 10 MG Oral Tablet 14,stopped,,1993-01-01,lisinopril 10 MG Oral Tablet 14,stopped,,1992-09-01,lisinopril 10 MG Oral Tablet 14,stopped,,1991-12-01,lisinopril 10 MG Oral Tablet 14,stopped,,1991-10-01,lisinopril 10 MG Oral Tablet 14,stopped,,1991-03-01,lisinopril 10 MG Oral Tablet +14,stopped,,1991-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,,1990-05-01,lisinopril 10 MG Oral Tablet 14,stopped,,1990-01-01,lisinopril 10 MG Oral Tablet 14,stopped,,1990-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5839,28 +7032,23 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,,1988-04-01,lisinopril 10 MG Oral Tablet 14,stopped,,1987-09-01,lisinopril 10 MG Oral Tablet 14,stopped,,1986-09-01,Hydrochlorothiazide 25 MG Oral Tablet -14,stopped,,1985-06-01, -14,stopped,,1984-10-01, -14,stopped,,1984-02-01, -14,stopped,,1984-01-01, -14,stopped,,1983-09-01, -14,stopped,,1983-08-01, -14,stopped,,1983-01-01, -14,stopped,,1982-10-01, -14,stopped,,1982-09-01, -14,stopped,,1981-05-01, -14,stopped,,1981-02-01, +14,stopped,,1981-10-01, +14,stopped,,1981-09-01, +14,stopped,,1981-06-01, +14,stopped,,1981-01-01, 14,stopped,,1980-11-01,Hydrochlorothiazide 25 MG Oral Tablet -14,stopped,,1980-08-01, -14,stopped,,1980-06-01, +14,stopped,,1980-09-01, 14,stopped,,1979-08-01, 14,stopped,,1979-05-01, -14,stopped,,1978-10-01, -14,stopped,,1978-08-01, 14,stopped,,1976-12-01, +14,stopped,,1976-11-01, 14,stopped,,1976-09-01, 14,stopped,,1976-06-01, +14,stopped,,1975-09-01, +14,stopped,,1974-03-01, 14,stopped,,1972-10-01, +14,stopped,order,,"heparin sodium, porcine 100 UNT/ML Injectable Solution" +14,stopped,order,,Galantamine 4 MG Oral Tablet 14,stopped,order,2022-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,2022-09-01,lisinopril 10 MG Oral Tablet 14,stopped,order,2022-08-01,lisinopril 10 MG Oral Tablet @@ -5868,24 +7056,43 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,order,2017-01-01,Simvastatin 10 MG Oral Tablet 14,stopped,order,2016-01-01,Simvastatin 10 MG Oral Tablet 14,stopped,order,2013-06-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2013-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2012-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2012-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2011-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2011-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2010-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2010-07-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2009-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,2008-10-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,order,2008-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2008-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2007-08-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,2007-07-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2007-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2007-02-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,order,2006-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2006-11-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2006-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2006-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2006-07-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2006-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2005-11-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,order,2005-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2005-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2005-03-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2005-03-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,2005-01-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2004-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2004-06-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2004-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2004-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2003-09-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,order,2003-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +14,stopped,order,2003-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2003-04-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2003-01-01,amLODIPine 2.5 MG Oral Tablet +14,stopped,order,2002-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,2002-01-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,2001-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,2001-08-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5909,6 +7116,7 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,order,1998-04-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,1998-01-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,1997-09-01,lisinopril 10 MG Oral Tablet +14,stopped,order,1997-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,1997-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,1997-03-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,1997-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5923,6 +7131,7 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,order,1995-05-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,1995-04-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,1995-04-01,Hydrochlorothiazide 25 MG Oral Tablet +14,stopped,order,1994-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,1994-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,1994-08-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,1994-07-01,amLODIPine 2.5 MG Oral Tablet @@ -5931,12 +7140,14 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,order,1993-10-01,amLODIPine 2.5 MG Oral Tablet 14,stopped,order,1993-07-01,Hydrochlorothiazide 25 MG Oral Tablet 14,stopped,order,1993-06-01,lisinopril 10 MG Oral Tablet +14,stopped,order,1993-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,1993-03-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1993-01-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1992-09-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1991-12-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1991-10-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1991-03-01,lisinopril 10 MG Oral Tablet +14,stopped,order,1991-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,stopped,order,1990-05-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1990-01-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1990-01-01,amLODIPine 2.5 MG Oral Tablet @@ -5947,35 +7158,30 @@ cnt,status,intent,authoredon_month,medication_display 14,stopped,order,1988-04-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1987-09-01,lisinopril 10 MG Oral Tablet 14,stopped,order,1986-09-01,Hydrochlorothiazide 25 MG Oral Tablet -14,stopped,order,1985-06-01, -14,stopped,order,1984-10-01, -14,stopped,order,1984-02-01, -14,stopped,order,1984-01-01, -14,stopped,order,1983-09-01, -14,stopped,order,1983-08-01, -14,stopped,order,1983-01-01, -14,stopped,order,1982-10-01, -14,stopped,order,1982-09-01, -14,stopped,order,1981-05-01, -14,stopped,order,1981-02-01, +14,stopped,order,1981-10-01, +14,stopped,order,1981-09-01, +14,stopped,order,1981-06-01, +14,stopped,order,1981-01-01, 14,stopped,order,1980-11-01,Hydrochlorothiazide 25 MG Oral Tablet -14,stopped,order,1980-08-01, -14,stopped,order,1980-06-01, +14,stopped,order,1980-09-01, 14,stopped,order,1979-08-01, 14,stopped,order,1979-05-01, -14,stopped,order,1978-10-01, -14,stopped,order,1978-08-01, 14,stopped,order,1976-12-01, +14,stopped,order,1976-11-01, 14,stopped,order,1976-09-01, 14,stopped,order,1976-06-01, +14,stopped,order,1975-09-01, +14,stopped,order,1974-03-01, 14,stopped,order,1972-10-01, 14,active,,,Chlorpheniramine Maleate 2 MG/ML Oral Solution +14,active,,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,active,,2023-02-01,Simvastatin 10 MG Oral Tablet 14,active,,2023-01-01,lisinopril 10 MG Oral Tablet 14,active,,2022-12-01,Hydrochlorothiazide 25 MG Oral Tablet 14,active,,2022-11-01,amLODIPine 2.5 MG Oral Tablet 14,active,,2022-04-01,amLODIPine 2.5 MG Oral Tablet 14,active,order,,Chlorpheniramine Maleate 2 MG/ML Oral Solution +14,active,order,2023-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 14,active,order,2023-02-01,Simvastatin 10 MG Oral Tablet 14,active,order,2023-01-01,lisinopril 10 MG Oral Tablet 14,active,order,2022-12-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -5987,11 +7193,15 @@ cnt,status,intent,authoredon_month,medication_display 13,,,2018-01-01,Simvastatin 10 MG Oral Tablet 13,,,2017-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,,,2014-02-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +13,,,2009-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,,2008-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,,2007-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,2007-01-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2006-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2006-10-01,amLODIPine 2.5 MG Oral Tablet 13,,,2006-09-01,lisinopril 10 MG Oral Tablet 13,,,2006-02-01,amLODIPine 2.5 MG Oral Tablet +13,,,2005-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,2005-02-01,amLODIPine 2.5 MG Oral Tablet 13,,,2004-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2004-10-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6004,9 +7214,13 @@ cnt,status,intent,authoredon_month,medication_display 13,,,2003-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2002-10-01,amLODIPine 2.5 MG Oral Tablet 13,,,2002-10-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,2002-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,2002-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2002-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,2001-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,,2001-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,2001-09-01,amLODIPine 2.5 MG Oral Tablet +13,,,2001-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,2001-01-01,amLODIPine 2.5 MG Oral Tablet 13,,,2000-09-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,2000-07-01,amLODIPine 2.5 MG Oral Tablet @@ -6016,35 +7230,50 @@ cnt,status,intent,authoredon_month,medication_display 13,,,1999-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1999-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1999-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1999-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1999-08-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1999-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,,1999-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1999-05-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1999-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1998-12-01,lisinopril 10 MG Oral Tablet +13,,,1998-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1998-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1998-08-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1998-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1997-12-01,amLODIPine 2.5 MG Oral Tablet 13,,,1997-11-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1997-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1997-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1997-01-01,lisinopril 10 MG Oral Tablet +13,,,1996-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,,1996-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1996-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1995-11-01,lisinopril 10 MG Oral Tablet +13,,,1995-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1995-08-01,lisinopril 10 MG Oral Tablet 13,,,1995-06-01,amLODIPine 2.5 MG Oral Tablet 13,,,1995-04-01,lisinopril 10 MG Oral Tablet +13,,,1995-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1995-01-01,amLODIPine 2.5 MG Oral Tablet 13,,,1994-06-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1994-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1994-03-01,lisinopril 10 MG Oral Tablet 13,,,1994-02-01,lisinopril 10 MG Oral Tablet 13,,,1994-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1993-10-01,lisinopril 10 MG Oral Tablet 13,,,1993-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,,1993-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1993-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1992-07-01,amLODIPine 2.5 MG Oral Tablet +13,,,1992-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1991-07-01,lisinopril 10 MG Oral Tablet 13,,,1991-06-01,amLODIPine 2.5 MG Oral Tablet 13,,,1991-04-01,lisinopril 10 MG Oral Tablet +13,,,1991-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1991-04-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1991-02-01,lisinopril 10 MG Oral Tablet +13,,,1991-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,,1990-12-01,lisinopril 10 MG Oral Tablet 13,,,1990-10-01,lisinopril 10 MG Oral Tablet 13,,,1990-07-01,lisinopril 10 MG Oral Tablet @@ -6067,13 +7296,14 @@ cnt,status,intent,authoredon_month,medication_display 13,,,1987-01-01,lisinopril 10 MG Oral Tablet 13,,,1986-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,,1986-05-01,amLODIPine 2.5 MG Oral Tablet -13,,,1981-10-01, -13,,,1981-09-01, -13,,,1976-11-01, +13,,,1980-07-01, +13,,,1979-12-01, +13,,,1978-05-01, +13,,,1977-08-01, 13,,,1975-11-01, -13,,,1975-09-01, 13,,,1974-12-01, 13,,,1974-10-01, +13,,,1974-06-01, 13,,,1973-10-01, 13,,order,,NDA021457 200 ACTUAT albuterol 0.09 MG/ACTUAT Metered Dose Inhaler [ProAir] 13,,order,2020-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] @@ -6081,11 +7311,15 @@ cnt,status,intent,authoredon_month,medication_display 13,,order,2018-01-01,Simvastatin 10 MG Oral Tablet 13,,order,2017-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,,order,2014-02-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +13,,order,2009-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,order,2008-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,order,2007-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,2007-01-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2006-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2006-10-01,amLODIPine 2.5 MG Oral Tablet 13,,order,2006-09-01,lisinopril 10 MG Oral Tablet 13,,order,2006-02-01,amLODIPine 2.5 MG Oral Tablet +13,,order,2005-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,2005-02-01,amLODIPine 2.5 MG Oral Tablet 13,,order,2004-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2004-10-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6098,9 +7332,13 @@ cnt,status,intent,authoredon_month,medication_display 13,,order,2003-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2002-10-01,amLODIPine 2.5 MG Oral Tablet 13,,order,2002-10-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,2002-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,2002-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2002-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,2001-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,order,2001-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,2001-09-01,amLODIPine 2.5 MG Oral Tablet +13,,order,2001-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,2001-01-01,amLODIPine 2.5 MG Oral Tablet 13,,order,2000-09-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,2000-07-01,amLODIPine 2.5 MG Oral Tablet @@ -6110,35 +7348,50 @@ cnt,status,intent,authoredon_month,medication_display 13,,order,1999-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1999-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1999-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1999-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1999-08-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1999-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,order,1999-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1999-05-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1999-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1998-12-01,lisinopril 10 MG Oral Tablet +13,,order,1998-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1998-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1998-08-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1998-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1997-12-01,amLODIPine 2.5 MG Oral Tablet 13,,order,1997-11-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1997-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1997-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1997-01-01,lisinopril 10 MG Oral Tablet +13,,order,1996-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,,order,1996-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1996-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1995-11-01,lisinopril 10 MG Oral Tablet +13,,order,1995-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1995-08-01,lisinopril 10 MG Oral Tablet 13,,order,1995-06-01,amLODIPine 2.5 MG Oral Tablet 13,,order,1995-04-01,lisinopril 10 MG Oral Tablet +13,,order,1995-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1995-01-01,amLODIPine 2.5 MG Oral Tablet 13,,order,1994-06-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1994-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1994-03-01,lisinopril 10 MG Oral Tablet 13,,order,1994-02-01,lisinopril 10 MG Oral Tablet 13,,order,1994-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1993-10-01,lisinopril 10 MG Oral Tablet 13,,order,1993-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,,order,1993-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1993-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1992-07-01,amLODIPine 2.5 MG Oral Tablet +13,,order,1992-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1991-07-01,lisinopril 10 MG Oral Tablet 13,,order,1991-06-01,amLODIPine 2.5 MG Oral Tablet 13,,order,1991-04-01,lisinopril 10 MG Oral Tablet +13,,order,1991-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1991-04-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1991-02-01,lisinopril 10 MG Oral Tablet +13,,order,1991-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,,order,1990-12-01,lisinopril 10 MG Oral Tablet 13,,order,1990-10-01,lisinopril 10 MG Oral Tablet 13,,order,1990-07-01,lisinopril 10 MG Oral Tablet @@ -6161,13 +7414,14 @@ cnt,status,intent,authoredon_month,medication_display 13,,order,1987-01-01,lisinopril 10 MG Oral Tablet 13,,order,1986-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,,order,1986-05-01,amLODIPine 2.5 MG Oral Tablet -13,,order,1981-10-01, -13,,order,1981-09-01, -13,,order,1976-11-01, +13,,order,1980-07-01, +13,,order,1979-12-01, +13,,order,1978-05-01, +13,,order,1977-08-01, 13,,order,1975-11-01, -13,,order,1975-09-01, 13,,order,1974-12-01, 13,,order,1974-10-01, +13,,order,1974-06-01, 13,,order,1973-10-01, 13,stopped,,,lisinopril 20 MG Oral Tablet 13,stopped,,,NDA021457 200 ACTUAT albuterol 0.09 MG/ACTUAT Metered Dose Inhaler [ProAir] @@ -6181,12 +7435,16 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,,2017-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,stopped,,2014-02-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,stopped,,2011-02-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,2009-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,,2008-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,,2007-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2007-01-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2006-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2006-10-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,2006-09-01,lisinopril 10 MG Oral Tablet 13,stopped,,2006-05-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,2006-02-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,2005-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2005-02-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,2004-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2004-10-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6198,10 +7456,15 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,,2003-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2002-10-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,2002-10-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,2002-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2002-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2002-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,2001-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,,2001-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2001-09-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,2001-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2001-01-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,2000-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,2000-09-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2000-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,2000-03-01,amLODIPine 2.5 MG Oral Tablet @@ -6209,35 +7472,49 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,,1999-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1999-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1999-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,1999-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1999-08-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,1999-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,,1999-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1999-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1999-04-01,lisinopril 10 MG Oral Tablet 13,stopped,,1999-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,1999-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1998-12-01,lisinopril 10 MG Oral Tablet +13,stopped,,1998-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1998-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1998-08-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1998-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1997-12-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,1997-11-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,,1997-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1997-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1997-01-01,lisinopril 10 MG Oral Tablet +13,stopped,,1996-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,,1996-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1996-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1995-11-01,lisinopril 10 MG Oral Tablet 13,stopped,,1995-08-01,lisinopril 10 MG Oral Tablet 13,stopped,,1995-06-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,1995-04-01,lisinopril 10 MG Oral Tablet +13,stopped,,1995-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1995-01-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,,1994-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1994-03-01,lisinopril 10 MG Oral Tablet 13,stopped,,1994-02-01,lisinopril 10 MG Oral Tablet 13,stopped,,1994-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1993-11-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,1993-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1993-09-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,1993-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1992-07-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,,1992-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1991-07-01,lisinopril 10 MG Oral Tablet 13,stopped,,1991-04-01,lisinopril 10 MG Oral Tablet +13,stopped,,1991-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1991-04-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1991-02-01,lisinopril 10 MG Oral Tablet +13,stopped,,1991-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,,1990-12-01,lisinopril 10 MG Oral Tablet 13,stopped,,1990-10-01,lisinopril 10 MG Oral Tablet 13,stopped,,1990-07-01,lisinopril 10 MG Oral Tablet @@ -6260,17 +7537,12 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,,1987-01-01,lisinopril 10 MG Oral Tablet 13,stopped,,1986-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,,1986-05-01,amLODIPine 2.5 MG Oral Tablet -13,stopped,,1985-10-01, -13,stopped,,1983-02-01, -13,stopped,,1982-08-01, -13,stopped,,1981-12-01, -13,stopped,,1981-10-01, -13,stopped,,1981-09-01, +13,stopped,,1980-12-01, +13,stopped,,1980-07-01, 13,stopped,,1978-09-01, +13,stopped,,1978-05-01, 13,stopped,,1978-04-01, 13,stopped,,1977-12-01, -13,stopped,,1976-11-01, -13,stopped,,1975-09-01, 13,stopped,,1974-12-01, 13,stopped,,1974-10-01, 13,stopped,,1973-10-01, @@ -6286,12 +7558,16 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,order,2017-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,stopped,order,2014-02-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 13,stopped,order,2011-02-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,2009-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,order,2008-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,order,2007-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2007-01-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2006-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2006-10-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,2006-09-01,lisinopril 10 MG Oral Tablet 13,stopped,order,2006-05-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,2006-02-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,2005-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2005-02-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,2004-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2004-10-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6303,10 +7579,15 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,order,2003-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2002-10-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,2002-10-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,2002-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2002-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2002-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,2001-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,order,2001-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2001-09-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,2001-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2001-01-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,2000-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,2000-09-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2000-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,2000-03-01,amLODIPine 2.5 MG Oral Tablet @@ -6314,35 +7595,49 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,order,1999-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1999-11-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1999-09-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,1999-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1999-08-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,1999-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,order,1999-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1999-05-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1999-04-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1999-04-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,1999-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1998-12-01,lisinopril 10 MG Oral Tablet +13,stopped,order,1998-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1998-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1998-08-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1998-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1997-12-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,1997-11-01,Hydrochlorothiazide 25 MG Oral Tablet +13,stopped,order,1997-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1997-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1997-01-01,lisinopril 10 MG Oral Tablet +13,stopped,order,1996-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +13,stopped,order,1996-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1996-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1995-11-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1995-08-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1995-06-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,1995-04-01,lisinopril 10 MG Oral Tablet +13,stopped,order,1995-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1995-01-01,amLODIPine 2.5 MG Oral Tablet 13,stopped,order,1994-06-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1994-03-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1994-02-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1994-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1993-11-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,1993-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1993-09-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,1993-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1992-07-01,amLODIPine 2.5 MG Oral Tablet +13,stopped,order,1992-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1991-07-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1991-04-01,lisinopril 10 MG Oral Tablet +13,stopped,order,1991-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1991-04-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1991-02-01,lisinopril 10 MG Oral Tablet +13,stopped,order,1991-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 13,stopped,order,1990-12-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1990-10-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1990-07-01,lisinopril 10 MG Oral Tablet @@ -6365,17 +7660,12 @@ cnt,status,intent,authoredon_month,medication_display 13,stopped,order,1987-01-01,lisinopril 10 MG Oral Tablet 13,stopped,order,1986-12-01,Hydrochlorothiazide 25 MG Oral Tablet 13,stopped,order,1986-05-01,amLODIPine 2.5 MG Oral Tablet -13,stopped,order,1985-10-01, -13,stopped,order,1983-02-01, -13,stopped,order,1982-08-01, -13,stopped,order,1981-12-01, -13,stopped,order,1981-10-01, -13,stopped,order,1981-09-01, +13,stopped,order,1980-12-01, +13,stopped,order,1980-07-01, 13,stopped,order,1978-09-01, +13,stopped,order,1978-05-01, 13,stopped,order,1978-04-01, 13,stopped,order,1977-12-01, -13,stopped,order,1976-11-01, -13,stopped,order,1975-09-01, 13,stopped,order,1974-12-01, 13,stopped,order,1974-10-01, 13,stopped,order,1973-10-01, @@ -6387,88 +7677,137 @@ cnt,status,intent,authoredon_month,medication_display 13,active,order,2023-02-01,Hydrochlorothiazide 25 MG Oral Tablet 13,active,order,2023-01-01,amLODIPine 2.5 MG Oral Tablet 13,active,order,2022-08-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,,Naproxen 500 MG Oral Tablet +12,,,,Acetaminophen 500 MG Oral Tablet +12,,,,Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet 12,,,,120 ACTUAT fluticasone propionate 0.11 MG/ACTUAT Metered Dose Inhaler [Flovent] +12,,,2022-10-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +12,,,2021-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,,2021-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,,2021-01-01,Simvastatin 10 MG Oral Tablet 12,,,2019-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,,2019-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,,,2019-02-01,Acetaminophen 325 MG Oral Tablet +12,,,2019-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,,2018-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,,2018-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,,,2017-05-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,,2016-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,,2015-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,,2015-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,,,2015-01-01,Simvastatin 10 MG Oral Tablet 12,,,2014-04-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,,,2012-06-01,amLODIPine 2.5 MG Oral Tablet +12,,,2011-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2010-06-01,amLODIPine 2.5 MG Oral Tablet 12,,,2009-11-01,amLODIPine 2.5 MG Oral Tablet +12,,,2008-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2008-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2007-11-01,amLODIPine 2.5 MG Oral Tablet 12,,,2007-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2007-10-01,amLODIPine 2.5 MG Oral Tablet 12,,,2007-04-01,amLODIPine 2.5 MG Oral Tablet +12,,,2007-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2007-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2006-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2006-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2006-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2006-02-01,lisinopril 10 MG Oral Tablet 12,,,2005-06-01,amLODIPine 2.5 MG Oral Tablet +12,,,2005-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2005-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2004-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2004-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2004-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2004-06-01,lisinopril 10 MG Oral Tablet +12,,,2004-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2004-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2003-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2003-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,2003-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2003-01-01,lisinopril 10 MG Oral Tablet +12,,,2002-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2002-09-01,lisinopril 10 MG Oral Tablet 12,,,2002-05-01,lisinopril 10 MG Oral Tablet +12,,,2002-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2002-04-01,amLODIPine 2.5 MG Oral Tablet +12,,,2002-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2002-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2001-05-01,lisinopril 10 MG Oral Tablet +12,,,2001-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,2000-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,2000-04-01,lisinopril 10 MG Oral Tablet +12,,,2000-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,2000-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1999-12-01,amLODIPine 2.5 MG Oral Tablet 12,,,1999-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1999-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1999-03-01,lisinopril 10 MG Oral Tablet +12,,,1999-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1999-01-01,amLODIPine 2.5 MG Oral Tablet 12,,,1998-12-01,amLODIPine 2.5 MG Oral Tablet +12,,,1998-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,1998-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,1998-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1998-07-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1998-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1998-03-01,amLODIPine 2.5 MG Oral Tablet 12,,,1998-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1997-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1997-04-01,lisinopril 10 MG Oral Tablet +12,,,1997-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1997-04-01,amLODIPine 2.5 MG Oral Tablet 12,,,1997-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1997-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1996-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1996-11-01,lisinopril 10 MG Oral Tablet 12,,,1996-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1996-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1996-09-01,amLODIPine 2.5 MG Oral Tablet 12,,,1996-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1996-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1996-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1996-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1996-06-01,amLODIPine 2.5 MG Oral Tablet 12,,,1996-05-01,amLODIPine 2.5 MG Oral Tablet +12,,,1996-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1996-03-01,amLODIPine 2.5 MG Oral Tablet 12,,,1996-02-01,lisinopril 10 MG Oral Tablet +12,,,1996-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1995-08-01,amLODIPine 2.5 MG Oral Tablet 12,,,1995-07-01,lisinopril 10 MG Oral Tablet +12,,,1995-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,1995-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1995-05-01,amLODIPine 2.5 MG Oral Tablet 12,,,1995-03-01,lisinopril 10 MG Oral Tablet +12,,,1995-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1994-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1994-10-01,lisinopril 10 MG Oral Tablet 12,,,1994-08-01,lisinopril 10 MG Oral Tablet +12,,,1994-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1994-05-01,amLODIPine 2.5 MG Oral Tablet +12,,,1993-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1993-05-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1993-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1993-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,,1992-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1992-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1992-05-01,amLODIPine 2.5 MG Oral Tablet 12,,,1992-02-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1991-10-01,amLODIPine 2.5 MG Oral Tablet 12,,,1991-06-01,lisinopril 10 MG Oral Tablet 12,,,1991-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1991-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1991-05-01,amLODIPine 2.5 MG Oral Tablet 12,,,1991-01-01,lisinopril 10 MG Oral Tablet 12,,,1990-12-01,amLODIPine 2.5 MG Oral Tablet 12,,,1990-12-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1990-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1990-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1990-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1990-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1990-05-01,amLODIPine 2.5 MG Oral Tablet +12,,,1990-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1990-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1989-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1989-09-01,lisinopril 10 MG Oral Tablet @@ -6476,7 +7815,9 @@ cnt,status,intent,authoredon_month,medication_display 12,,,1989-06-01,lisinopril 10 MG Oral Tablet 12,,,1989-06-01,amLODIPine 2.5 MG Oral Tablet 12,,,1989-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,,1989-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1989-05-01,amLODIPine 2.5 MG Oral Tablet +12,,,1989-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,,1989-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,,1988-11-01,lisinopril 10 MG Oral Tablet 12,,,1988-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6494,104 +7835,153 @@ cnt,status,intent,authoredon_month,medication_display 12,,,1985-09-01,lisinopril 10 MG Oral Tablet 12,,,1985-08-01,lisinopril 10 MG Oral Tablet 12,,,1985-08-01,Hydrochlorothiazide 25 MG Oral Tablet -12,,,1981-08-01, -12,,,1981-06-01, -12,,,1981-01-01, -12,,,1980-12-01, 12,,,1980-11-01,lisinopril 10 MG Oral Tablet -12,,,1980-07-01, -12,,,1979-12-01, 12,,,1979-03-01, 12,,,1978-12-01, -12,,,1978-05-01, 12,,,1977-10-01, +12,,,1977-06-01, +12,,,1977-05-01, 12,,,1976-08-01, 12,,,1976-04-01, 12,,,1976-01-01, +12,,,1975-10-01, +12,,,1975-03-01, 12,,,1974-09-01, -12,,,1974-03-01, +12,,,1974-07-01, +12,,,1973-08-01, +12,,,1971-10-01, +12,,,1971-08-01, +12,,order,,Naproxen 500 MG Oral Tablet +12,,order,,Acetaminophen 500 MG Oral Tablet +12,,order,,Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet 12,,order,,120 ACTUAT fluticasone propionate 0.11 MG/ACTUAT Metered Dose Inhaler [Flovent] +12,,order,2022-10-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +12,,order,2021-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,order,2021-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,order,2021-01-01,Simvastatin 10 MG Oral Tablet 12,,order,2019-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,order,2019-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,,order,2019-02-01,Acetaminophen 325 MG Oral Tablet +12,,order,2019-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,order,2018-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,order,2018-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,,order,2017-05-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,,order,2016-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,order,2015-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,,order,2015-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,,order,2015-01-01,Simvastatin 10 MG Oral Tablet 12,,order,2014-04-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,,order,2012-06-01,amLODIPine 2.5 MG Oral Tablet +12,,order,2011-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2010-06-01,amLODIPine 2.5 MG Oral Tablet 12,,order,2009-11-01,amLODIPine 2.5 MG Oral Tablet +12,,order,2008-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2008-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2007-11-01,amLODIPine 2.5 MG Oral Tablet 12,,order,2007-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2007-10-01,amLODIPine 2.5 MG Oral Tablet 12,,order,2007-04-01,amLODIPine 2.5 MG Oral Tablet +12,,order,2007-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2007-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2006-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2006-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2006-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2006-02-01,lisinopril 10 MG Oral Tablet 12,,order,2005-06-01,amLODIPine 2.5 MG Oral Tablet +12,,order,2005-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2005-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2004-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2004-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2004-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2004-06-01,lisinopril 10 MG Oral Tablet +12,,order,2004-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2004-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2003-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2003-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,2003-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2003-01-01,lisinopril 10 MG Oral Tablet +12,,order,2002-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2002-09-01,lisinopril 10 MG Oral Tablet 12,,order,2002-05-01,lisinopril 10 MG Oral Tablet +12,,order,2002-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2002-04-01,amLODIPine 2.5 MG Oral Tablet +12,,order,2002-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2002-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2001-05-01,lisinopril 10 MG Oral Tablet +12,,order,2001-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,2000-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,2000-04-01,lisinopril 10 MG Oral Tablet +12,,order,2000-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,2000-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1999-12-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1999-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1999-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1999-03-01,lisinopril 10 MG Oral Tablet +12,,order,1999-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1999-01-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1998-12-01,amLODIPine 2.5 MG Oral Tablet +12,,order,1998-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,1998-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,1998-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1998-07-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1998-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1998-03-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1998-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1997-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1997-04-01,lisinopril 10 MG Oral Tablet +12,,order,1997-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1997-04-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1997-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1997-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1996-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1996-11-01,lisinopril 10 MG Oral Tablet 12,,order,1996-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1996-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1996-09-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1996-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1996-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1996-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1996-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1996-06-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1996-05-01,amLODIPine 2.5 MG Oral Tablet +12,,order,1996-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1996-03-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1996-02-01,lisinopril 10 MG Oral Tablet +12,,order,1996-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1995-08-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1995-07-01,lisinopril 10 MG Oral Tablet +12,,order,1995-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,1995-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1995-05-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1995-03-01,lisinopril 10 MG Oral Tablet +12,,order,1995-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1994-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1994-10-01,lisinopril 10 MG Oral Tablet 12,,order,1994-08-01,lisinopril 10 MG Oral Tablet +12,,order,1994-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1994-05-01,amLODIPine 2.5 MG Oral Tablet +12,,order,1993-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1993-05-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1993-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1993-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,,order,1992-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1992-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1992-05-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1992-02-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1991-10-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1991-06-01,lisinopril 10 MG Oral Tablet 12,,order,1991-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1991-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1991-05-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1991-01-01,lisinopril 10 MG Oral Tablet 12,,order,1990-12-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1990-12-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1990-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1990-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1990-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1990-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1990-05-01,amLODIPine 2.5 MG Oral Tablet +12,,order,1990-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1990-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1989-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1989-09-01,lisinopril 10 MG Oral Tablet @@ -6599,7 +7989,9 @@ cnt,status,intent,authoredon_month,medication_display 12,,order,1989-06-01,lisinopril 10 MG Oral Tablet 12,,order,1989-06-01,amLODIPine 2.5 MG Oral Tablet 12,,order,1989-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,,order,1989-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1989-05-01,amLODIPine 2.5 MG Oral Tablet +12,,order,1989-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,,order,1989-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,,order,1988-11-01,lisinopril 10 MG Oral Tablet 12,,order,1988-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6617,92 +8009,134 @@ cnt,status,intent,authoredon_month,medication_display 12,,order,1985-09-01,lisinopril 10 MG Oral Tablet 12,,order,1985-08-01,lisinopril 10 MG Oral Tablet 12,,order,1985-08-01,Hydrochlorothiazide 25 MG Oral Tablet -12,,order,1981-08-01, -12,,order,1981-06-01, -12,,order,1981-01-01, -12,,order,1980-12-01, 12,,order,1980-11-01,lisinopril 10 MG Oral Tablet -12,,order,1980-07-01, -12,,order,1979-12-01, 12,,order,1979-03-01, 12,,order,1978-12-01, -12,,order,1978-05-01, 12,,order,1977-10-01, +12,,order,1977-06-01, +12,,order,1977-05-01, 12,,order,1976-08-01, 12,,order,1976-04-01, 12,,order,1976-01-01, +12,,order,1975-10-01, +12,,order,1975-03-01, 12,,order,1974-09-01, -12,,order,1974-03-01, +12,,order,1974-07-01, +12,,order,1973-08-01, +12,,order,1971-10-01, +12,,order,1971-08-01, +12,stopped,,,Acetaminophen 500 MG Oral Tablet +12,stopped,,,Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet +12,stopped,,2021-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,stopped,,2021-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,,2021-01-01,Simvastatin 10 MG Oral Tablet 12,stopped,,2019-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,,2019-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,stopped,,2019-02-01,Acetaminophen 325 MG Oral Tablet 12,stopped,,2018-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,,2018-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,stopped,,2017-05-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,stopped,,2016-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,,2015-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,,2015-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,stopped,,2015-01-01,Simvastatin 10 MG Oral Tablet 12,stopped,,2012-06-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,2011-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2010-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,2009-11-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,2008-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2008-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2007-11-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,2007-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2007-10-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,2007-04-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,2007-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2007-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2006-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2006-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2006-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2006-02-01,lisinopril 10 MG Oral Tablet 12,stopped,,2005-06-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,2005-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2005-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2004-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2004-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2004-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2004-06-01,lisinopril 10 MG Oral Tablet +12,stopped,,2004-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2004-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2004-02-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,2003-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2003-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,2003-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2003-01-01,lisinopril 10 MG Oral Tablet +12,stopped,,2002-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2002-09-01,lisinopril 10 MG Oral Tablet 12,stopped,,2002-05-01,lisinopril 10 MG Oral Tablet +12,stopped,,2002-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2002-04-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,2002-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2002-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2001-05-01,lisinopril 10 MG Oral Tablet +12,stopped,,2001-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,2000-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,2000-07-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,2000-04-01,lisinopril 10 MG Oral Tablet +12,stopped,,2000-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,2000-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1999-12-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1999-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1999-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1999-03-01,lisinopril 10 MG Oral Tablet +12,stopped,,1999-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1999-01-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1998-12-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,1998-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,1998-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,1998-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1998-07-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,1998-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1998-03-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1998-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1997-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1997-04-01,lisinopril 10 MG Oral Tablet +12,stopped,,1997-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1997-04-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1997-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,1997-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1996-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1996-11-01,lisinopril 10 MG Oral Tablet 12,stopped,,1996-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1996-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1996-09-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1996-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,1996-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1996-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1996-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1996-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1996-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,1996-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1996-03-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1996-02-01,lisinopril 10 MG Oral Tablet +12,stopped,,1996-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,1995-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1995-08-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1995-07-01,lisinopril 10 MG Oral Tablet +12,stopped,,1995-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,1995-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1995-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1995-03-01,lisinopril 10 MG Oral Tablet +12,stopped,,1995-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1994-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1994-08-01,lisinopril 10 MG Oral Tablet +12,stopped,,1994-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,,1994-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1993-10-01,lisinopril 10 MG Oral Tablet 12,stopped,,1993-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1993-05-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1993-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1993-02-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,1992-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1992-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1992-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1992-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6711,9 +8145,11 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,,1991-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1991-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1991-01-01,lisinopril 10 MG Oral Tablet +12,stopped,,1990-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1990-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1990-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1990-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,1990-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1990-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1989-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1989-09-01,lisinopril 10 MG Oral Tablet @@ -6721,7 +8157,9 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,,1989-06-01,lisinopril 10 MG Oral Tablet 12,stopped,,1989-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,,1989-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,,1989-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1989-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,,1989-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,,1989-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,,1988-11-01,lisinopril 10 MG Oral Tablet 12,stopped,,1988-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6739,92 +8177,133 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,,1985-09-01,lisinopril 10 MG Oral Tablet 12,stopped,,1985-08-01,lisinopril 10 MG Oral Tablet 12,stopped,,1985-08-01,Hydrochlorothiazide 25 MG Oral Tablet -12,stopped,,1985-02-01, -12,stopped,,1981-08-01, -12,stopped,,1981-06-01, -12,stopped,,1981-01-01, -12,stopped,,1980-12-01, 12,stopped,,1980-11-01,lisinopril 10 MG Oral Tablet -12,stopped,,1980-07-01, +12,stopped,,1979-12-01, 12,stopped,,1979-03-01, 12,stopped,,1978-12-01, -12,stopped,,1978-05-01, 12,stopped,,1977-10-01, +12,stopped,,1977-08-01, +12,stopped,,1977-06-01, 12,stopped,,1976-08-01, 12,stopped,,1976-04-01, 12,stopped,,1976-01-01, +12,stopped,,1975-10-01, +12,stopped,,1975-03-01, 12,stopped,,1974-09-01, -12,stopped,,1974-03-01, +12,stopped,,1974-07-01, +12,stopped,,1971-10-01, +12,stopped,order,,Acetaminophen 500 MG Oral Tablet +12,stopped,order,,Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet +12,stopped,order,2021-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,stopped,order,2021-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,order,2021-01-01,Simvastatin 10 MG Oral Tablet 12,stopped,order,2019-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,order,2019-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,stopped,order,2019-02-01,Acetaminophen 325 MG Oral Tablet 12,stopped,order,2018-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,order,2018-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +12,stopped,order,2017-05-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 12,stopped,order,2016-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,order,2015-02-01,Ibuprofen 400 MG Oral Tablet [Ibu] 12,stopped,order,2015-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 12,stopped,order,2015-01-01,Simvastatin 10 MG Oral Tablet 12,stopped,order,2012-06-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,2011-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2010-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,2009-11-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,2008-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2008-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2007-11-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,2007-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2007-10-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,2007-04-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,2007-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2007-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2006-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2006-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2006-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2006-02-01,lisinopril 10 MG Oral Tablet 12,stopped,order,2005-06-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,2005-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2005-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2004-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2004-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2004-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2004-06-01,lisinopril 10 MG Oral Tablet +12,stopped,order,2004-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2004-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2004-02-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,2003-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2003-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,2003-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2003-01-01,lisinopril 10 MG Oral Tablet +12,stopped,order,2002-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2002-09-01,lisinopril 10 MG Oral Tablet 12,stopped,order,2002-05-01,lisinopril 10 MG Oral Tablet +12,stopped,order,2002-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2002-04-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,2002-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2002-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2001-05-01,lisinopril 10 MG Oral Tablet +12,stopped,order,2001-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,2000-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,2000-07-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,2000-04-01,lisinopril 10 MG Oral Tablet +12,stopped,order,2000-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,2000-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1999-12-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1999-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1999-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1999-03-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1999-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1999-01-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1998-12-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,1998-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,1998-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,1998-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1998-07-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,1998-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1998-03-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1998-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1997-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1997-04-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1997-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1997-04-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1997-04-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,1997-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1996-12-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1996-11-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1996-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1996-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1996-09-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1996-09-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,1996-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1996-08-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1996-07-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1996-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1996-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,1996-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1996-03-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1996-02-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1996-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,1995-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1995-08-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1995-07-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1995-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,1995-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1995-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1995-03-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1995-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1994-11-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1994-08-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1994-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +12,stopped,order,1994-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1993-10-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1993-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1993-05-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1993-04-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1993-02-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,1992-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1992-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1992-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1992-02-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6833,9 +8312,11 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,order,1991-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1991-05-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1991-01-01,lisinopril 10 MG Oral Tablet +12,stopped,order,1990-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1990-09-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1990-06-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1990-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,1990-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1990-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1989-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1989-09-01,lisinopril 10 MG Oral Tablet @@ -6843,7 +8324,9 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,order,1989-06-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1989-06-01,amLODIPine 2.5 MG Oral Tablet 12,stopped,order,1989-06-01,Hydrochlorothiazide 25 MG Oral Tablet +12,stopped,order,1989-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1989-05-01,amLODIPine 2.5 MG Oral Tablet +12,stopped,order,1989-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 12,stopped,order,1989-01-01,Hydrochlorothiazide 25 MG Oral Tablet 12,stopped,order,1988-11-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1988-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6861,22 +8344,21 @@ cnt,status,intent,authoredon_month,medication_display 12,stopped,order,1985-09-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1985-08-01,lisinopril 10 MG Oral Tablet 12,stopped,order,1985-08-01,Hydrochlorothiazide 25 MG Oral Tablet -12,stopped,order,1985-02-01, -12,stopped,order,1981-08-01, -12,stopped,order,1981-06-01, -12,stopped,order,1981-01-01, -12,stopped,order,1980-12-01, 12,stopped,order,1980-11-01,lisinopril 10 MG Oral Tablet -12,stopped,order,1980-07-01, +12,stopped,order,1979-12-01, 12,stopped,order,1979-03-01, 12,stopped,order,1978-12-01, -12,stopped,order,1978-05-01, 12,stopped,order,1977-10-01, +12,stopped,order,1977-08-01, +12,stopped,order,1977-06-01, 12,stopped,order,1976-08-01, 12,stopped,order,1976-04-01, 12,stopped,order,1976-01-01, +12,stopped,order,1975-10-01, +12,stopped,order,1975-03-01, 12,stopped,order,1974-09-01, -12,stopped,order,1974-03-01, +12,stopped,order,1974-07-01, +12,stopped,order,1971-10-01, 12,active,,,120 ACTUAT fluticasone propionate 0.11 MG/ACTUAT Metered Dose Inhaler [Flovent] 12,active,,2022-12-01,lisinopril 10 MG Oral Tablet 12,active,,2022-10-01,lisinopril 10 MG Oral Tablet @@ -6891,32 +8373,59 @@ cnt,status,intent,authoredon_month,medication_display 12,active,order,2022-10-01,Hydrochlorothiazide 25 MG Oral Tablet 12,active,order,2022-09-01,amLODIPine 2.5 MG Oral Tablet 12,active,order,2022-05-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,,piperacillin 2000 MG / tazobactam 250 MG Injection 11,,,,Loratadine 10 MG Oral Tablet 11,,,,Astemizole 10 MG Oral Tablet +11,,,,Alteplase 100 MG Injection +11,,,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet +11,,,,2 ML morphine sulfate 1 MG/ML Injection +11,,,,150 ML vancomycin 5 MG/ML Injection +11,,,,0.4 ML Enoxaparin sodium 100 MG/ML Prefilled Syringe 11,,,2022-12-01,Simvastatin 10 MG Oral Tablet +11,,,2022-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +11,,,2021-12-01,Alendronic acid 10 MG Oral Tablet 11,,,2021-09-01,Simvastatin 10 MG Oral Tablet +11,,,2021-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,,,2020-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +11,,,2020-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,,,2017-05-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 11,,,2016-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 11,,,2014-05-01,72 HR Fentanyl 0.025 MG/HR Transdermal System +11,,,2011-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2009-07-01,amLODIPine 2.5 MG Oral Tablet +11,,,2008-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,2007-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2007-10-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,2006-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2006-10-01,lisinopril 10 MG Oral Tablet +11,,,2006-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,2006-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2005-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,2005-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,2005-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2005-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,2005-05-01,amLODIPine 2.5 MG Oral Tablet 11,,,2005-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,2004-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,2003-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2003-06-01,amLODIPine 2.5 MG Oral Tablet +11,,,2003-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,2003-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2002-09-01,amLODIPine 2.5 MG Oral Tablet +11,,,2002-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2001-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,2001-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,2001-04-01,amLODIPine 2.5 MG Oral Tablet 11,,,2001-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,2001-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,2000-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2000-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,2000-04-01,amLODIPine 2.5 MG Oral Tablet +11,,,2000-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2000-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,2000-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,2000-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1999-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1999-07-01,amLODIPine 2.5 MG Oral Tablet 11,,,1999-04-01,amLODIPine 2.5 MG Oral Tablet 11,,,1999-03-01,amLODIPine 2.5 MG Oral Tablet @@ -6924,12 +8433,15 @@ cnt,status,intent,authoredon_month,medication_display 11,,,1998-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1997-09-01,amLODIPine 2.5 MG Oral Tablet 11,,,1997-06-01,amLODIPine 2.5 MG Oral Tablet +11,,,1997-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1997-05-01,amLODIPine 2.5 MG Oral Tablet 11,,,1996-12-01,amLODIPine 2.5 MG Oral Tablet 11,,,1996-11-01,amLODIPine 2.5 MG Oral Tablet 11,,,1996-10-01,amLODIPine 2.5 MG Oral Tablet +11,,,1996-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1996-04-01,lisinopril 10 MG Oral Tablet 11,,,1996-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1995-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1995-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1995-02-01,amLODIPine 2.5 MG Oral Tablet 11,,,1995-01-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6940,6 +8452,7 @@ cnt,status,intent,authoredon_month,medication_display 11,,,1994-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1994-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1994-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1993-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1993-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1993-06-01,amLODIPine 2.5 MG Oral Tablet 11,,,1993-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -6949,26 +8462,36 @@ cnt,status,intent,authoredon_month,medication_display 11,,,1992-10-01,amLODIPine 2.5 MG Oral Tablet 11,,,1992-08-01,amLODIPine 2.5 MG Oral Tablet 11,,,1992-08-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1992-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1992-07-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1992-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1992-03-01,lisinopril 10 MG Oral Tablet 11,,,1992-01-01,lisinopril 10 MG Oral Tablet 11,,,1992-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1991-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1991-12-01,amLODIPine 2.5 MG Oral Tablet 11,,,1991-09-01,lisinopril 10 MG Oral Tablet 11,,,1991-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1991-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1991-03-01,amLODIPine 2.5 MG Oral Tablet 11,,,1990-11-01,lisinopril 10 MG Oral Tablet 11,,,1990-10-01,amLODIPine 2.5 MG Oral Tablet 11,,,1990-09-01,amLODIPine 2.5 MG Oral Tablet 11,,,1990-08-01,amLODIPine 2.5 MG Oral Tablet +11,,,1990-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,1990-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1990-05-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1990-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,,1989-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1989-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1989-04-01,amLODIPine 2.5 MG Oral Tablet 11,,,1989-03-01,lisinopril 10 MG Oral Tablet 11,,,1989-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1989-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1988-12-01,amLODIPine 2.5 MG Oral Tablet +11,,,1988-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1988-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,,1988-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1988-07-01,lisinopril 10 MG Oral Tablet 11,,,1988-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1988-02-01,amLODIPine 2.5 MG Oral Tablet @@ -6977,54 +8500,78 @@ cnt,status,intent,authoredon_month,medication_display 11,,,1987-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1987-08-01,amLODIPine 2.5 MG Oral Tablet 11,,,1987-08-01,Hydrochlorothiazide 25 MG Oral Tablet -11,,,1987-03-01, 11,,,1986-12-01,lisinopril 10 MG Oral Tablet 11,,,1986-12-01,amLODIPine 2.5 MG Oral Tablet +11,,,1986-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,,1986-07-01,lisinopril 10 MG Oral Tablet 11,,,1986-03-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1985-07-01,lisinopril 10 MG Oral Tablet 11,,,1985-01-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,,1984-07-01,lisinopril 10 MG Oral Tablet -11,,,1980-09-01, +11,,,1982-02-01, +11,,,1980-05-01, 11,,,1980-02-01, 11,,,1979-09-01, 11,,,1979-02-01, -11,,,1977-08-01, -11,,,1977-06-01, -11,,,1977-05-01, -11,,,1975-10-01, +11,,,1976-10-01, 11,,,1975-04-01, -11,,,1975-03-01, -11,,,1974-06-01, +11,,,1974-05-01, 11,,,1973-11-01, +11,,,1973-07-01, 11,,,1972-08-01, -11,,,1971-10-01, +11,,order,,piperacillin 2000 MG / tazobactam 250 MG Injection 11,,order,,Loratadine 10 MG Oral Tablet 11,,order,,Astemizole 10 MG Oral Tablet +11,,order,,Alteplase 100 MG Injection +11,,order,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet +11,,order,,2 ML morphine sulfate 1 MG/ML Injection +11,,order,,150 ML vancomycin 5 MG/ML Injection +11,,order,,0.4 ML Enoxaparin sodium 100 MG/ML Prefilled Syringe 11,,order,2022-12-01,Simvastatin 10 MG Oral Tablet +11,,order,2022-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +11,,order,2021-12-01,Alendronic acid 10 MG Oral Tablet 11,,order,2021-09-01,Simvastatin 10 MG Oral Tablet +11,,order,2021-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,,order,2020-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +11,,order,2020-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,,order,2017-05-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 11,,order,2016-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 11,,order,2014-05-01,72 HR Fentanyl 0.025 MG/HR Transdermal System +11,,order,2011-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2009-07-01,amLODIPine 2.5 MG Oral Tablet +11,,order,2008-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,2007-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2007-10-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,2006-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2006-10-01,lisinopril 10 MG Oral Tablet +11,,order,2006-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,2006-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2005-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,2005-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,2005-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2005-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,2005-05-01,amLODIPine 2.5 MG Oral Tablet 11,,order,2005-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,2004-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,2003-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2003-06-01,amLODIPine 2.5 MG Oral Tablet +11,,order,2003-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,2003-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2002-09-01,amLODIPine 2.5 MG Oral Tablet +11,,order,2002-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2001-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,2001-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,2001-04-01,amLODIPine 2.5 MG Oral Tablet 11,,order,2001-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,2001-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,2000-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2000-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,2000-04-01,amLODIPine 2.5 MG Oral Tablet +11,,order,2000-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2000-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,2000-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,2000-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1999-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1999-07-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1999-04-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1999-03-01,amLODIPine 2.5 MG Oral Tablet @@ -7032,12 +8579,15 @@ cnt,status,intent,authoredon_month,medication_display 11,,order,1998-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1997-09-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1997-06-01,amLODIPine 2.5 MG Oral Tablet +11,,order,1997-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1997-05-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1996-12-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1996-11-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1996-10-01,amLODIPine 2.5 MG Oral Tablet +11,,order,1996-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1996-04-01,lisinopril 10 MG Oral Tablet 11,,order,1996-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1995-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1995-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1995-02-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1995-01-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7048,6 +8598,7 @@ cnt,status,intent,authoredon_month,medication_display 11,,order,1994-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1994-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1994-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1993-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1993-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1993-06-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1993-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7057,26 +8608,36 @@ cnt,status,intent,authoredon_month,medication_display 11,,order,1992-10-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1992-08-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1992-08-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1992-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1992-07-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1992-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1992-03-01,lisinopril 10 MG Oral Tablet 11,,order,1992-01-01,lisinopril 10 MG Oral Tablet 11,,order,1992-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1991-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1991-12-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1991-09-01,lisinopril 10 MG Oral Tablet 11,,order,1991-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1991-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1991-03-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1990-11-01,lisinopril 10 MG Oral Tablet 11,,order,1990-10-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1990-09-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1990-08-01,amLODIPine 2.5 MG Oral Tablet +11,,order,1990-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,1990-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1990-05-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1990-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,,order,1989-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1989-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1989-04-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1989-03-01,lisinopril 10 MG Oral Tablet 11,,order,1989-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1989-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1988-12-01,amLODIPine 2.5 MG Oral Tablet +11,,order,1988-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1988-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,,order,1988-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1988-07-01,lisinopril 10 MG Oral Tablet 11,,order,1988-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1988-02-01,amLODIPine 2.5 MG Oral Tablet @@ -7085,53 +8646,75 @@ cnt,status,intent,authoredon_month,medication_display 11,,order,1987-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1987-08-01,amLODIPine 2.5 MG Oral Tablet 11,,order,1987-08-01,Hydrochlorothiazide 25 MG Oral Tablet -11,,order,1987-03-01, 11,,order,1986-12-01,lisinopril 10 MG Oral Tablet 11,,order,1986-12-01,amLODIPine 2.5 MG Oral Tablet +11,,order,1986-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,,order,1986-07-01,lisinopril 10 MG Oral Tablet 11,,order,1986-03-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1985-07-01,lisinopril 10 MG Oral Tablet 11,,order,1985-01-01,Hydrochlorothiazide 25 MG Oral Tablet 11,,order,1984-07-01,lisinopril 10 MG Oral Tablet -11,,order,1980-09-01, +11,,order,1982-02-01, +11,,order,1980-05-01, 11,,order,1980-02-01, 11,,order,1979-09-01, 11,,order,1979-02-01, -11,,order,1977-08-01, -11,,order,1977-06-01, -11,,order,1977-05-01, -11,,order,1975-10-01, +11,,order,1976-10-01, 11,,order,1975-04-01, -11,,order,1975-03-01, -11,,order,1974-06-01, +11,,order,1974-05-01, 11,,order,1973-11-01, +11,,order,1973-07-01, 11,,order,1972-08-01, -11,,order,1971-10-01, +11,stopped,,,piperacillin 2000 MG / tazobactam 250 MG Injection +11,stopped,,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet +11,stopped,,,2 ML morphine sulfate 1 MG/ML Injection +11,stopped,,,150 ML vancomycin 5 MG/ML Injection 11,stopped,,,120 ACTUAT fluticasone propionate 0.11 MG/ACTUAT Metered Dose Inhaler [Flovent] -11,stopped,,2023-03-01, +11,stopped,,,0.4 ML Enoxaparin sodium 100 MG/ML Prefilled Syringe +11,stopped,,2021-12-01,Alendronic acid 10 MG Oral Tablet 11,stopped,,2021-09-01,Simvastatin 10 MG Oral Tablet +11,stopped,,2021-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,stopped,,2020-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +11,stopped,,2020-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +11,stopped,,2019-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,stopped,,2017-05-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 11,stopped,,2016-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 11,stopped,,2014-05-01,72 HR Fentanyl 0.025 MG/HR Transdermal System +11,stopped,,2011-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2009-07-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,2008-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,2007-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2007-10-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,2006-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2006-10-01,lisinopril 10 MG Oral Tablet +11,stopped,,2006-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,2006-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2005-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,2005-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,2005-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2005-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,2005-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,2005-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,2004-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,2003-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2003-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,2003-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,2003-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2002-09-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,2002-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2001-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,2001-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,2001-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,2001-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,2001-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,2000-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2000-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,2000-04-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,2000-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2000-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,2000-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,2000-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1999-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1999-07-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1999-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1999-03-01,amLODIPine 2.5 MG Oral Tablet @@ -7139,12 +8722,15 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,,1998-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1997-09-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1997-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1997-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1997-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1996-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1996-11-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1996-10-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1996-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1996-04-01,lisinopril 10 MG Oral Tablet 11,stopped,,1996-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1995-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1995-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1995-02-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1995-01-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7156,36 +8742,50 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,,1994-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1994-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1994-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1993-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,1993-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1993-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1993-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1993-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1993-01-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1992-12-01,lisinopril 10 MG Oral Tablet 11,stopped,,1992-10-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1992-08-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1992-08-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1992-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1992-07-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1992-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1992-03-01,lisinopril 10 MG Oral Tablet 11,stopped,,1992-01-01,lisinopril 10 MG Oral Tablet 11,stopped,,1992-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1991-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1991-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1991-09-01,lisinopril 10 MG Oral Tablet 11,stopped,,1991-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1991-06-01,lisinopril 10 MG Oral Tablet +11,stopped,,1991-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1991-03-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1990-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1990-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1990-11-01,lisinopril 10 MG Oral Tablet 11,stopped,,1990-10-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1990-09-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1990-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1990-08-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1990-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,1990-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1990-05-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1990-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,,1989-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1989-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1989-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1989-03-01,lisinopril 10 MG Oral Tablet 11,stopped,,1989-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1989-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1988-12-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1988-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1988-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,,1988-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1988-07-01,lisinopril 10 MG Oral Tablet 11,stopped,,1988-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1988-02-01,amLODIPine 2.5 MG Oral Tablet @@ -7194,54 +8794,78 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,,1987-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1987-08-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,,1987-08-01,Hydrochlorothiazide 25 MG Oral Tablet -11,stopped,,1987-03-01, 11,stopped,,1986-12-01,lisinopril 10 MG Oral Tablet 11,stopped,,1986-12-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,,1986-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,,1986-07-01,lisinopril 10 MG Oral Tablet 11,stopped,,1986-03-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1985-07-01,lisinopril 10 MG Oral Tablet 11,stopped,,1985-01-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,,1984-07-01,lisinopril 10 MG Oral Tablet -11,stopped,,1980-09-01, 11,stopped,,1980-02-01, -11,stopped,,1979-12-01, 11,stopped,,1979-09-01, 11,stopped,,1979-02-01, -11,stopped,,1977-08-01, -11,stopped,,1977-06-01, 11,stopped,,1977-05-01, +11,stopped,,1976-10-01, 11,stopped,,1975-11-01, -11,stopped,,1975-10-01, 11,stopped,,1975-04-01, -11,stopped,,1975-03-01, +11,stopped,,1974-06-01, +11,stopped,,1974-05-01, 11,stopped,,1973-11-01, +11,stopped,,1973-08-01, +11,stopped,,1973-07-01, 11,stopped,,1972-08-01, -11,stopped,,1971-10-01, +11,stopped,,1971-08-01, +11,stopped,order,,piperacillin 2000 MG / tazobactam 250 MG Injection +11,stopped,order,,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet +11,stopped,order,,2 ML morphine sulfate 1 MG/ML Injection +11,stopped,order,,150 ML vancomycin 5 MG/ML Injection 11,stopped,order,,120 ACTUAT fluticasone propionate 0.11 MG/ACTUAT Metered Dose Inhaler [Flovent] -11,stopped,order,2023-03-01, +11,stopped,order,,0.4 ML Enoxaparin sodium 100 MG/ML Prefilled Syringe +11,stopped,order,2021-12-01,Alendronic acid 10 MG Oral Tablet 11,stopped,order,2021-09-01,Simvastatin 10 MG Oral Tablet +11,stopped,order,2021-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,stopped,order,2020-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +11,stopped,order,2020-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +11,stopped,order,2019-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 11,stopped,order,2017-05-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] 11,stopped,order,2016-02-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 11,stopped,order,2014-05-01,72 HR Fentanyl 0.025 MG/HR Transdermal System +11,stopped,order,2011-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2009-07-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,2008-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,2007-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2007-10-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,2006-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2006-10-01,lisinopril 10 MG Oral Tablet +11,stopped,order,2006-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,2006-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2005-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,2005-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,2005-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2005-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,2005-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,2005-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,2004-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,2003-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2003-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,2003-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,2003-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2002-09-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,2002-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2001-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,2001-05-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,2001-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,2001-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,2001-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,2000-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2000-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,2000-04-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,2000-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2000-02-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,2000-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,2000-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1999-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1999-07-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1999-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1999-03-01,amLODIPine 2.5 MG Oral Tablet @@ -7249,12 +8873,15 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,order,1998-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1997-09-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1997-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1997-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1997-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1996-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1996-11-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1996-10-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1996-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1996-04-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1996-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1995-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1995-06-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1995-02-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1995-01-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7266,36 +8893,50 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,order,1994-05-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1994-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1994-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1993-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,1993-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1993-10-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1993-06-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1993-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1993-01-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1992-12-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1992-10-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1992-08-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1992-08-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1992-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1992-07-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1992-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1992-03-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1992-01-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1992-01-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1991-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1991-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1991-09-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1991-09-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1991-06-01,lisinopril 10 MG Oral Tablet +11,stopped,order,1991-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1991-03-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1990-12-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1990-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1990-11-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1990-10-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1990-09-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1990-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1990-08-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1990-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,1990-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1990-05-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1990-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +11,stopped,order,1989-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1989-08-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1989-04-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1989-03-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1989-03-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1989-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1988-12-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1988-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1988-09-01,Hydrochlorothiazide 25 MG Oral Tablet +11,stopped,order,1988-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1988-07-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1988-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1988-02-01,amLODIPine 2.5 MG Oral Tablet @@ -7304,31 +8945,32 @@ cnt,status,intent,authoredon_month,medication_display 11,stopped,order,1987-12-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1987-08-01,amLODIPine 2.5 MG Oral Tablet 11,stopped,order,1987-08-01,Hydrochlorothiazide 25 MG Oral Tablet -11,stopped,order,1987-03-01, 11,stopped,order,1986-12-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1986-12-01,amLODIPine 2.5 MG Oral Tablet +11,stopped,order,1986-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,stopped,order,1986-07-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1986-03-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1985-07-01,lisinopril 10 MG Oral Tablet 11,stopped,order,1985-01-01,Hydrochlorothiazide 25 MG Oral Tablet 11,stopped,order,1984-07-01,lisinopril 10 MG Oral Tablet -11,stopped,order,1980-09-01, 11,stopped,order,1980-02-01, -11,stopped,order,1979-12-01, 11,stopped,order,1979-09-01, 11,stopped,order,1979-02-01, -11,stopped,order,1977-08-01, -11,stopped,order,1977-06-01, 11,stopped,order,1977-05-01, +11,stopped,order,1976-10-01, 11,stopped,order,1975-11-01, -11,stopped,order,1975-10-01, 11,stopped,order,1975-04-01, -11,stopped,order,1975-03-01, +11,stopped,order,1974-06-01, +11,stopped,order,1974-05-01, 11,stopped,order,1973-11-01, +11,stopped,order,1973-08-01, +11,stopped,order,1973-07-01, 11,stopped,order,1972-08-01, -11,stopped,order,1971-10-01, +11,stopped,order,1971-08-01, 11,active,,,Loratadine 10 MG Oral Tablet 11,active,,,Astemizole 10 MG Oral Tablet +11,active,,,Alteplase 100 MG Injection +11,active,,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,active,,2022-12-01,Simvastatin 10 MG Oral Tablet 11,active,,2022-04-01,lisinopril 10 MG Oral Tablet 11,active,,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7336,61 +8978,112 @@ cnt,status,intent,authoredon_month,medication_display 11,active,,2014-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 11,active,order,,Loratadine 10 MG Oral Tablet 11,active,order,,Astemizole 10 MG Oral Tablet +11,active,order,,Alteplase 100 MG Injection +11,active,order,2022-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 11,active,order,2022-12-01,Simvastatin 10 MG Oral Tablet 11,active,order,2022-04-01,lisinopril 10 MG Oral Tablet 11,active,order,2022-04-01,Hydrochlorothiazide 25 MG Oral Tablet 11,active,order,2014-03-01, 11,active,order,2014-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet +10,,,,verapamil hydrochloride 80 MG Oral Tablet +10,,,,ticagrelor 90 MG Oral Tablet 10,,,,budesonide 0.25 MG/ML Inhalation Suspension +10,,,,Warfarin Sodium 5 MG Oral Tablet +10,,,,Leucovorin 100 MG Injection +10,,,,Digoxin 0.125 MG Oral Tablet +10,,,,Allopurinol 100 MG Oral Tablet +10,,,,10 ML oxaliplatin 5 MG/ML Injection +10,,,,1 ML Enoxaparin sodium 150 MG/ML Prefilled Syringe +10,,,2023-03-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,,2023-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2022-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,,,2022-11-01,Simvastatin 10 MG Oral Tablet +10,,,2022-10-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] 10,,,2022-09-01,Simvastatin 10 MG Oral Tablet +10,,,2022-09-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,,2022-08-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,,2022-07-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,,2022-03-01,Acetaminophen 325 MG Oral Tablet 10,,,2022-02-01,Simvastatin 10 MG Oral Tablet +10,,,2022-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2021-12-01,Simvastatin 10 MG Oral Tablet 10,,,2021-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,,,2021-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +10,,,2021-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2020-12-01,Simvastatin 10 MG Oral Tablet +10,,,2020-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2020-06-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,,2020-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2020-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,,2020-02-01,Simvastatin 10 MG Oral Tablet 10,,,2020-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,,2020-01-01,Simvastatin 10 MG Oral Tablet +10,,,2019-11-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2018-05-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,,,2018-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 10,,,2018-03-01,72 HR Fentanyl 0.025 MG/HR Transdermal System 10,,,2017-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,,2017-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,,,2017-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,,2016-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,,,2016-08-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2015-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,,2014-12-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,,2014-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,,2014-03-01,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +10,,,2009-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,2005-11-01,Simvastatin 10 MG Oral Tablet +10,,,2005-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2005-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2003-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,2003-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,2002-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2001-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2001-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2001-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2001-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2001-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,2000-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,2000-01-01,amLODIPine 2.5 MG Oral Tablet +10,,,1998-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1998-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1998-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,1998-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,1997-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1997-10-01,amLODIPine 2.5 MG Oral Tablet +10,,,1997-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1997-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1997-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1996-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,1996-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1996-07-01,amLODIPine 2.5 MG Oral Tablet 10,,,1996-04-01,amLODIPine 2.5 MG Oral Tablet 10,,,1996-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1995-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1995-11-01,amLODIPine 2.5 MG Oral Tablet 10,,,1995-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1995-09-01,amLODIPine 2.5 MG Oral Tablet 10,,,1995-02-01,lisinopril 10 MG Oral Tablet 10,,,1995-02-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1994-09-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1994-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1994-01-01,amLODIPine 2.5 MG Oral Tablet 10,,,1993-08-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1993-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1993-06-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1993-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1993-05-01,amLODIPine 2.5 MG Oral Tablet 10,,,1993-04-01,lisinopril 10 MG Oral Tablet 10,,,1993-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1992-12-01,amLODIPine 2.5 MG Oral Tablet +10,,,1992-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1992-08-01,lisinopril 10 MG Oral Tablet 10,,,1992-06-01,lisinopril 10 MG Oral Tablet 10,,,1992-04-01,lisinopril 10 MG Oral Tablet +10,,,1992-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,1992-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1992-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1992-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1992-01-01,amLODIPine 2.5 MG Oral Tablet 10,,,1991-11-01,amLODIPine 2.5 MG Oral Tablet 10,,,1991-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7399,11 +9092,15 @@ cnt,status,intent,authoredon_month,medication_display 10,,,1991-02-01,amLODIPine 2.5 MG Oral Tablet 10,,,1991-01-01,amLODIPine 2.5 MG Oral Tablet 10,,,1991-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1990-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1990-10-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1990-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1990-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1990-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1990-04-01,amLODIPine 2.5 MG Oral Tablet 10,,,1990-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1990-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,,1989-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1989-10-01,amLODIPine 2.5 MG Oral Tablet 10,,,1989-09-01,amLODIPine 2.5 MG Oral Tablet 10,,,1989-08-01,amLODIPine 2.5 MG Oral Tablet @@ -7413,7 +9110,9 @@ cnt,status,intent,authoredon_month,medication_display 10,,,1989-01-01,amLODIPine 2.5 MG Oral Tablet 10,,,1988-12-01,lisinopril 10 MG Oral Tablet 10,,,1988-12-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1988-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1988-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1988-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1988-05-01,amLODIPine 2.5 MG Oral Tablet 10,,,1988-04-01,amLODIPine 2.5 MG Oral Tablet 10,,,1988-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7421,19 +9120,25 @@ cnt,status,intent,authoredon_month,medication_display 10,,,1987-10-01,lisinopril 10 MG Oral Tablet 10,,,1987-09-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1987-08-01,lisinopril 10 MG Oral Tablet +10,,,1987-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1987-05-01,lisinopril 10 MG Oral Tablet 10,,,1987-05-01,amLODIPine 2.5 MG Oral Tablet +10,,,1987-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1987-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1986-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1986-09-01,amLODIPine 2.5 MG Oral Tablet 10,,,1986-07-01,amLODIPine 2.5 MG Oral Tablet 10,,,1986-06-01,lisinopril 10 MG Oral Tablet +10,,,1986-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1986-05-01,lisinopril 10 MG Oral Tablet 10,,,1986-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1986-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1986-04-01,amLODIPine 2.5 MG Oral Tablet 10,,,1986-04-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1985-12-01,lisinopril 10 MG Oral Tablet 10,,,1985-12-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1985-11-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,,1985-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,,1985-08-01,amLODIPine 2.5 MG Oral Tablet 10,,,1985-01-01,lisinopril 10 MG Oral Tablet 10,,,1984-11-01,lisinopril 10 MG Oral Tablet @@ -7443,72 +9148,117 @@ cnt,status,intent,authoredon_month,medication_display 10,,,1984-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1983-07-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,,1983-04-01,lisinopril 10 MG Oral Tablet -10,,,1982-02-01, 10,,,1981-11-01,lisinopril 10 MG Oral Tablet 10,,,1980-03-01,lisinopril 10 MG Oral Tablet 10,,,1979-06-01, 10,,,1978-07-01, +10,,,1978-02-01, 10,,,1977-02-01, -10,,,1976-10-01, 10,,,1976-02-01, +10,,,1975-08-01, 10,,,1975-01-01, -10,,,1974-07-01, -10,,,1974-05-01, -10,,,1973-08-01, -10,,,1973-07-01, 10,,,1973-05-01, 10,,,1971-11-01, -10,,,1971-08-01, +10,,,1967-10-01, +10,,order,,verapamil hydrochloride 80 MG Oral Tablet +10,,order,,ticagrelor 90 MG Oral Tablet 10,,order,,budesonide 0.25 MG/ML Inhalation Suspension +10,,order,,Warfarin Sodium 5 MG Oral Tablet +10,,order,,Leucovorin 100 MG Injection +10,,order,,Digoxin 0.125 MG Oral Tablet +10,,order,,Allopurinol 100 MG Oral Tablet +10,,order,,10 ML oxaliplatin 5 MG/ML Injection +10,,order,,1 ML Enoxaparin sodium 150 MG/ML Prefilled Syringe +10,,order,2023-03-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,order,2023-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2022-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,,order,2022-11-01,Simvastatin 10 MG Oral Tablet +10,,order,2022-10-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] 10,,order,2022-09-01,Simvastatin 10 MG Oral Tablet +10,,order,2022-09-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,order,2022-08-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,order,2022-07-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,,order,2022-03-01,Acetaminophen 325 MG Oral Tablet 10,,order,2022-02-01,Simvastatin 10 MG Oral Tablet +10,,order,2022-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2021-12-01,Simvastatin 10 MG Oral Tablet 10,,order,2021-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,,order,2021-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +10,,order,2021-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2020-12-01,Simvastatin 10 MG Oral Tablet +10,,order,2020-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2020-06-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,order,2020-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2020-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,order,2020-02-01,Simvastatin 10 MG Oral Tablet 10,,order,2020-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,order,2020-01-01,Simvastatin 10 MG Oral Tablet +10,,order,2019-11-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2018-05-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,,order,2018-03-01,Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet 10,,order,2018-03-01,72 HR Fentanyl 0.025 MG/HR Transdermal System 10,,order,2017-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,order,2017-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,,order,2017-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,order,2016-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,,order,2016-08-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2015-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,,order,2014-12-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,,order,2014-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,,order,2014-03-01,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +10,,order,2009-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,2005-11-01,Simvastatin 10 MG Oral Tablet +10,,order,2005-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2005-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2003-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,2003-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,2002-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2001-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2001-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2001-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2001-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2001-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,2000-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,2000-01-01,amLODIPine 2.5 MG Oral Tablet +10,,order,1998-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1998-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1998-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,1998-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,1997-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1997-10-01,amLODIPine 2.5 MG Oral Tablet +10,,order,1997-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1997-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1997-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1996-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,1996-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1996-07-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1996-04-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1996-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1995-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1995-11-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1995-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1995-09-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1995-02-01,lisinopril 10 MG Oral Tablet 10,,order,1995-02-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1994-09-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1994-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1994-01-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1993-08-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1993-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1993-06-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1993-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1993-05-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1993-04-01,lisinopril 10 MG Oral Tablet 10,,order,1993-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1992-12-01,amLODIPine 2.5 MG Oral Tablet +10,,order,1992-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1992-08-01,lisinopril 10 MG Oral Tablet 10,,order,1992-06-01,lisinopril 10 MG Oral Tablet 10,,order,1992-04-01,lisinopril 10 MG Oral Tablet +10,,order,1992-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,1992-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1992-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1992-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1992-01-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1991-11-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1991-11-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7517,11 +9267,15 @@ cnt,status,intent,authoredon_month,medication_display 10,,order,1991-02-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1991-01-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1991-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1990-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1990-10-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1990-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1990-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1990-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1990-04-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1990-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1990-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,,order,1989-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1989-10-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1989-09-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1989-08-01,amLODIPine 2.5 MG Oral Tablet @@ -7531,7 +9285,9 @@ cnt,status,intent,authoredon_month,medication_display 10,,order,1989-01-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1988-12-01,lisinopril 10 MG Oral Tablet 10,,order,1988-12-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1988-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1988-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1988-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1988-05-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1988-04-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1988-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7539,19 +9295,25 @@ cnt,status,intent,authoredon_month,medication_display 10,,order,1987-10-01,lisinopril 10 MG Oral Tablet 10,,order,1987-09-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1987-08-01,lisinopril 10 MG Oral Tablet +10,,order,1987-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1987-05-01,lisinopril 10 MG Oral Tablet 10,,order,1987-05-01,amLODIPine 2.5 MG Oral Tablet +10,,order,1987-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1987-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1986-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1986-09-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1986-07-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1986-06-01,lisinopril 10 MG Oral Tablet +10,,order,1986-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1986-05-01,lisinopril 10 MG Oral Tablet 10,,order,1986-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1986-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1986-04-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1986-04-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1985-12-01,lisinopril 10 MG Oral Tablet 10,,order,1985-12-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1985-11-01,Hydrochlorothiazide 25 MG Oral Tablet +10,,order,1985-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,,order,1985-08-01,amLODIPine 2.5 MG Oral Tablet 10,,order,1985-01-01,lisinopril 10 MG Oral Tablet 10,,order,1984-11-01,lisinopril 10 MG Oral Tablet @@ -7561,81 +9323,132 @@ cnt,status,intent,authoredon_month,medication_display 10,,order,1984-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1983-07-01,Hydrochlorothiazide 25 MG Oral Tablet 10,,order,1983-04-01,lisinopril 10 MG Oral Tablet -10,,order,1982-02-01, 10,,order,1981-11-01,lisinopril 10 MG Oral Tablet 10,,order,1980-03-01,lisinopril 10 MG Oral Tablet 10,,order,1979-06-01, 10,,order,1978-07-01, +10,,order,1978-02-01, 10,,order,1977-02-01, -10,,order,1976-10-01, 10,,order,1976-02-01, +10,,order,1975-08-01, 10,,order,1975-01-01, -10,,order,1974-07-01, -10,,order,1974-05-01, -10,,order,1973-08-01, -10,,order,1973-07-01, 10,,order,1973-05-01, 10,,order,1971-11-01, -10,,order,1971-08-01, +10,,order,1967-10-01, +10,stopped,,,verapamil hydrochloride 80 MG Oral Tablet +10,stopped,,,ticagrelor 90 MG Oral Tablet +10,stopped,,,carbamazepine 20 MG/ML Oral Suspension [Tegretol] 10,stopped,,,budesonide 0.25 MG/ML Inhalation Suspension +10,stopped,,,Warfarin Sodium 5 MG Oral Tablet +10,stopped,,,Leucovorin 100 MG Injection +10,stopped,,,Digoxin 0.125 MG Oral Tablet +10,stopped,,,Allopurinol 100 MG Oral Tablet +10,stopped,,,10 ML oxaliplatin 5 MG/ML Injection +10,stopped,,,1 ML Enoxaparin sodium 150 MG/ML Prefilled Syringe +10,stopped,,2023-03-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,,2022-10-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,,2022-09-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,,2022-08-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,,2022-07-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,,2022-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,stopped,,2022-03-01,Acetaminophen 325 MG Oral Tablet 10,stopped,,2022-02-01,Simvastatin 10 MG Oral Tablet +10,stopped,,2022-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2021-12-01,Simvastatin 10 MG Oral Tablet 10,stopped,,2021-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,stopped,,2021-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +10,stopped,,2021-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2020-12-01,Simvastatin 10 MG Oral Tablet +10,stopped,,2020-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2020-06-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,,2020-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2020-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,,2020-02-01,Simvastatin 10 MG Oral Tablet 10,stopped,,2020-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,,2020-01-01,Simvastatin 10 MG Oral Tablet +10,stopped,,2019-11-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2018-05-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,stopped,,2017-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,,2017-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,stopped,,2017-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,,2016-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,stopped,,2016-08-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2015-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,,2014-12-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,,2014-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,,2014-03-01,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +10,stopped,,2009-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,2005-11-01,Simvastatin 10 MG Oral Tablet +10,stopped,,2005-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2005-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2003-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,2003-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,2002-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2001-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2001-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2001-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2001-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2001-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,2000-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,2000-01-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1998-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1998-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1998-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,1998-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,1997-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1997-10-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1997-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1997-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1997-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1996-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,1996-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1996-07-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1996-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1996-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1995-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1995-11-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1995-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1995-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1995-02-01,lisinopril 10 MG Oral Tablet 10,stopped,,1995-02-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1994-09-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1994-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1994-05-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1994-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1993-08-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1993-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1993-06-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1993-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1993-05-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1993-04-01,lisinopril 10 MG Oral Tablet 10,stopped,,1993-03-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1993-02-01,lisinopril 10 MG Oral Tablet 10,stopped,,1993-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1992-12-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1992-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1992-08-01,lisinopril 10 MG Oral Tablet 10,stopped,,1992-06-01,lisinopril 10 MG Oral Tablet 10,stopped,,1992-04-01,lisinopril 10 MG Oral Tablet +10,stopped,,1992-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,1992-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1992-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1992-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1992-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1991-11-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1991-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1991-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1991-07-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1991-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1991-02-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1991-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1991-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1990-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1990-10-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1990-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1990-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1990-04-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1990-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,,1989-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1989-10-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1989-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1989-08-01,amLODIPine 2.5 MG Oral Tablet @@ -7645,7 +9458,9 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,,1989-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1988-12-01,lisinopril 10 MG Oral Tablet 10,stopped,,1988-12-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1988-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1988-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1988-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1988-05-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1988-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1988-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7653,18 +9468,24 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,,1987-10-01,lisinopril 10 MG Oral Tablet 10,stopped,,1987-09-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1987-08-01,lisinopril 10 MG Oral Tablet +10,stopped,,1987-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1987-05-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,,1987-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1987-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1986-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1986-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1986-07-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1986-06-01,lisinopril 10 MG Oral Tablet +10,stopped,,1986-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1986-05-01,lisinopril 10 MG Oral Tablet 10,stopped,,1986-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1986-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1986-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1986-04-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1985-12-01,lisinopril 10 MG Oral Tablet 10,stopped,,1985-12-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1985-11-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,,1985-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,,1985-08-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,,1985-01-01,lisinopril 10 MG Oral Tablet 10,stopped,,1984-11-01,lisinopril 10 MG Oral Tablet @@ -7674,79 +9495,130 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,,1984-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1983-07-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,,1983-04-01,lisinopril 10 MG Oral Tablet +10,stopped,,1982-02-01, 10,stopped,,1981-11-01,lisinopril 10 MG Oral Tablet +10,stopped,,1980-05-01, 10,stopped,,1980-03-01,lisinopril 10 MG Oral Tablet 10,stopped,,1979-06-01, 10,stopped,,1977-02-01, -10,stopped,,1976-10-01, +10,stopped,,1975-08-01, 10,stopped,,1975-01-01, -10,stopped,,1974-07-01, -10,stopped,,1974-06-01, -10,stopped,,1974-05-01, -10,stopped,,1973-08-01, -10,stopped,,1973-07-01, 10,stopped,,1973-05-01, 10,stopped,,1971-11-01, -10,stopped,,1971-08-01, +10,stopped,order,,verapamil hydrochloride 80 MG Oral Tablet +10,stopped,order,,ticagrelor 90 MG Oral Tablet +10,stopped,order,,carbamazepine 20 MG/ML Oral Suspension [Tegretol] 10,stopped,order,,budesonide 0.25 MG/ML Inhalation Suspension +10,stopped,order,,Warfarin Sodium 5 MG Oral Tablet +10,stopped,order,,Leucovorin 100 MG Injection +10,stopped,order,,Digoxin 0.125 MG Oral Tablet +10,stopped,order,,Allopurinol 100 MG Oral Tablet +10,stopped,order,,10 ML oxaliplatin 5 MG/ML Injection +10,stopped,order,,1 ML Enoxaparin sodium 150 MG/ML Prefilled Syringe +10,stopped,order,2023-03-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,order,2022-10-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,order,2022-09-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,order,2022-08-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,order,2022-07-01,1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen] +10,stopped,order,2022-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,stopped,order,2022-03-01,Acetaminophen 325 MG Oral Tablet 10,stopped,order,2022-02-01,Simvastatin 10 MG Oral Tablet +10,stopped,order,2022-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2021-12-01,Simvastatin 10 MG Oral Tablet 10,stopped,order,2021-12-01,24 HR tacrolimus 1 MG Extended Release Oral Tablet 10,stopped,order,2021-03-01,Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet] +10,stopped,order,2021-01-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2020-12-01,Simvastatin 10 MG Oral Tablet +10,stopped,order,2020-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2020-06-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,order,2020-06-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2020-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,order,2020-02-01,Simvastatin 10 MG Oral Tablet 10,stopped,order,2020-02-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,order,2020-01-01,Simvastatin 10 MG Oral Tablet +10,stopped,order,2019-11-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2018-05-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,stopped,order,2017-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,order,2017-03-01,Ibuprofen 400 MG Oral Tablet [Ibu] 10,stopped,order,2017-03-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,order,2016-09-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet +10,stopped,order,2016-08-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2015-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] +10,stopped,order,2014-12-01,24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet 10,stopped,order,2014-05-01,Acetaminophen 325 MG Oral Tablet [Tylenol] 10,stopped,order,2014-03-01,Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin] +10,stopped,order,2009-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,2005-11-01,Simvastatin 10 MG Oral Tablet +10,stopped,order,2005-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2005-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2003-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,2003-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,2002-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2001-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2001-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2001-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2001-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2001-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,2000-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,2000-01-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1998-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1998-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1998-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,1998-01-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,1997-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1997-10-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1997-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1997-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1997-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1996-12-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,1996-07-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1996-07-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1996-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1996-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1995-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1995-11-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1995-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1995-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1995-02-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1995-02-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1994-09-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1994-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1994-05-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1994-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1993-08-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1993-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1993-06-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1993-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1993-05-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1993-04-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1993-03-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1993-02-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1993-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1992-12-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1992-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1992-08-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1992-06-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1992-04-01,lisinopril 10 MG Oral Tablet +10,stopped,order,1992-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,1992-03-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1992-03-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1992-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1992-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1991-11-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1991-11-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1991-08-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1991-07-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1991-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1991-02-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1991-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1991-01-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1990-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1990-10-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1990-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1990-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1990-04-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1990-02-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" +10,stopped,order,1989-10-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1989-10-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1989-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1989-08-01,amLODIPine 2.5 MG Oral Tablet @@ -7756,7 +9628,9 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,order,1989-01-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1988-12-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1988-12-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1988-11-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1988-07-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1988-05-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1988-05-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1988-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1988-03-01,Hydrochlorothiazide 25 MG Oral Tablet @@ -7764,18 +9638,24 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,order,1987-10-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1987-09-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1987-08-01,lisinopril 10 MG Oral Tablet +10,stopped,order,1987-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1987-05-01,amLODIPine 2.5 MG Oral Tablet +10,stopped,order,1987-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1987-04-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1986-09-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1986-09-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1986-07-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1986-06-01,lisinopril 10 MG Oral Tablet +10,stopped,order,1986-06-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1986-05-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1986-05-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1986-04-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1986-04-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1986-04-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1985-12-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1985-12-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1985-11-01,Hydrochlorothiazide 25 MG Oral Tablet +10,stopped,order,1985-08-01,"insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]" 10,stopped,order,1985-08-01,amLODIPine 2.5 MG Oral Tablet 10,stopped,order,1985-01-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1984-11-01,lisinopril 10 MG Oral Tablet @@ -7785,29 +9665,35 @@ cnt,status,intent,authoredon_month,medication_display 10,stopped,order,1984-01-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1983-07-01,Hydrochlorothiazide 25 MG Oral Tablet 10,stopped,order,1983-04-01,lisinopril 10 MG Oral Tablet +10,stopped,order,1982-02-01, 10,stopped,order,1981-11-01,lisinopril 10 MG Oral Tablet +10,stopped,order,1980-05-01, 10,stopped,order,1980-03-01,lisinopril 10 MG Oral Tablet 10,stopped,order,1979-06-01, 10,stopped,order,1977-02-01, -10,stopped,order,1976-10-01, +10,stopped,order,1975-08-01, 10,stopped,order,1975-01-01, -10,stopped,order,1974-07-01, -10,stopped,order,1974-06-01, -10,stopped,order,1974-05-01, -10,stopped,order,1973-08-01, -10,stopped,order,1973-07-01, 10,stopped,order,1973-05-01, 10,stopped,order,1971-11-01, -10,stopped,order,1971-08-01, +10,active,,,verapamil hydrochloride 80 MG Oral Tablet 10,active,,,budesonide 0.25 MG/ML Inhalation Suspension +10,active,,,Warfarin Sodium 5 MG Oral Tablet +10,active,,,Trinessa 28 Day Pack +10,active,,,Digoxin 0.125 MG Oral Tablet 10,active,,2022-11-01,lisinopril 10 MG Oral Tablet 10,active,,2022-11-01,Simvastatin 10 MG Oral Tablet 10,active,,2022-09-01,Simvastatin 10 MG Oral Tablet 10,active,,2022-07-01,lisinopril 10 MG Oral Tablet 10,active,,2022-06-01,lisinopril 10 MG Oral Tablet +10,active,,2014-04-01, +10,active,order,,verapamil hydrochloride 80 MG Oral Tablet 10,active,order,,budesonide 0.25 MG/ML Inhalation Suspension +10,active,order,,Warfarin Sodium 5 MG Oral Tablet +10,active,order,,Trinessa 28 Day Pack +10,active,order,,Digoxin 0.125 MG Oral Tablet 10,active,order,2022-11-01,lisinopril 10 MG Oral Tablet 10,active,order,2022-11-01,Simvastatin 10 MG Oral Tablet 10,active,order,2022-09-01,Simvastatin 10 MG Oral Tablet 10,active,order,2022-07-01,lisinopril 10 MG Oral Tablet 10,active,order,2022-06-01,lisinopril 10 MG Oral Tablet +10,active,order,2014-04-01, diff --git a/tests/regression/reference/core__count_medicationrequest_month.parquet b/tests/regression/reference/core__count_medicationrequest_month.parquet index 2f9d4fb202beefadbf7cd337abefc744beeb9fed..df4dff1c39ab15fb299db8afb0069da711bbbf6c 100644 GIT binary patch literal 29156 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 |x$xPdCv`{^Fcaj_x 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ⅇ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%0DpjK0Db_z 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 diff --git a/tests/test_cli.py b/tests/test_cli.py index 9de8f2a3..871a9f58 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -307,7 +307,7 @@ def test_clean(mock_path, tmp_path, args, expected): # pylint: disable=unused-a @pytest.mark.parametrize( "build_args,export_args,expected_tables", [ - (["build", "-t", "core"], ["export", "-t", "core"], 57), + (["build", "-t", "core"], ["export", "-t", "core"], 59), ( # checking that a study is loaded from a child directory # of a user-defined path diff --git a/tests/test_data/core/core__count_medicationrequest_month.txt b/tests/test_data/core/core__count_medicationrequest_month.txt index cb12f384..8337d730 100644 --- a/tests/test_data/core/core__count_medicationrequest_month.txt +++ b/tests/test_data/core/core__count_medicationrequest_month.txt @@ -1,4 +1,12 @@ -(14, 'stopped', 'order', None, None) -(14, 'stopped', None, None, None) -(14, None, 'order', None, None) -(14, None, None, None, None) +(11, 'stopped', 'order', '2018-06-01', None) +(11, 'stopped', None, '2018-06-01', None) +(12, None, 'order', '2018-06-01', None) +(12, None, None, '2018-06-01', None) +(15, 'stopped', 'order', '2018-07-01', None) +(15, 'stopped', None, '2018-07-01', None) +(15, None, 'order', '2018-07-01', None) +(15, None, None, '2018-07-01', None) +(26, 'stopped', 'order', None, None) +(26, 'stopped', None, None, None) +(27, None, 'order', None, None) +(27, None, None, None, None) diff --git a/tests/test_data/core/core__medicationrequest.txt b/tests/test_data/core/core__medicationrequest.txt index 09d1c1dd..df61b964 100644 --- a/tests/test_data/core/core__medicationrequest.txt +++ b/tests/test_data/core/core__medicationrequest.txt @@ -1,20 +1,39 @@ ('0dbe45aa-d9b4-e29a-d9e3-2604276ec057', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '245134', '72 HR Fentanyl 0.025 MG/HR Transdermal System', datetime.date(2018, 7, 28), datetime.date(2018, 7, 1), 'Every seventy two hours (qualifier value)', 'Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7', 'Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0') +('1066a8ec-d791-0f90-18ed-46e9db5c230a', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '106892', 'insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]', datetime.date(2018, 7, 13), datetime.date(2018, 7, 1), None, 'Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13', 'Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f') +('16fdc45d-7df7-f483-bacc-9fa0926048c8', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '748879', 'Levora 0.15/30 28 Day Pack', datetime.date(2018, 6, 7), datetime.date(2018, 6, 1), None, 'Patient/149de67a-2809-59a8-bfa2-36df509021dc', 'Encounter/beb26500-4ccd-ce0a-44f6-74f44be5fafe') +('1775f635-147b-a136-876c-18d865c1cc7d', 'active', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '866412', '24 HR metoprolol succinate 100 MG Extended Release Oral Tablet', datetime.date(2018, 6, 7), datetime.date(2018, 6, 1), None, 'Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84', 'Encounter/02eb4e14-1a6f-d968-2c26-c0cf5023afe0') ('18c16864-5c48-ce42-6adf-3dc4fadae32f', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '308136', 'amLODIPine 2.5 MG Oral Tablet', datetime.date(2018, 7, 11), datetime.date(2018, 7, 1), None, 'Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957', 'Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd') ('1c97f94f-68b3-bc69-6930-66e7b1fbf216', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '310798', 'Hydrochlorothiazide 25 MG Oral Tablet', datetime.date(2018, 6, 2), datetime.date(2018, 6, 1), None, 'Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4', 'Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d') ('279d5da6-d819-71fe-9238-6bbf2e9281f1', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '1664463', '24 HR tacrolimus 1 MG Extended Release Oral Tablet', datetime.date(2018, 7, 9), datetime.date(2018, 7, 1), 'Take as needed.', 'Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183', 'Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3') +('2c348743-863c-8b07-b575-668e7becb5c1', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '205923', '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]', datetime.date(2018, 6, 5), datetime.date(2018, 6, 1), None, 'Patient/a5bc08ea-9462-c4f5-1bd2-ff342598ac99', 'Encounter/f964be66-3fcd-95c8-0021-71c7d24c91b7') ('3dd7628f-309e-48aa-f9c3-ef4ca336d7d0', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '308136', 'amLODIPine 2.5 MG Oral Tablet', datetime.date(2018, 7, 13), datetime.date(2018, 7, 1), None, 'Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13', 'Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f') ('3f33044e-7035-a01d-c5f9-030a7c027888', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '314076', 'lisinopril 10 MG Oral Tablet', datetime.date(2018, 6, 14), datetime.date(2018, 6, 1), None, 'Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986', 'Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3') +('4202a8b6-5f6d-ec43-6bf6-156a9bf842f3', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '106892', 'insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]', datetime.date(2018, 7, 11), datetime.date(2018, 7, 1), None, 'Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957', 'Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd') ('48f27039-a404-e01f-1b25-0c747637a524', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '308136', 'amLODIPine 2.5 MG Oral Tablet', datetime.date(2018, 6, 14), datetime.date(2018, 6, 1), None, 'Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986', 'Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3') +('52269ea0-95b6-bd57-20ce-5461ea4b151c', 'active', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '705129', 'Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray', datetime.date(2018, 6, 7), datetime.date(2018, 6, 1), None, 'Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84', 'Encounter/02eb4e14-1a6f-d968-2c26-c0cf5023afe0') +('531ebeba-3c23-bb67-3fc9-cef05f726934', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '106892', 'insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]', datetime.date(2018, 7, 10), datetime.date(2018, 7, 1), None, 'Patient/6385ddd7-2639-6505-3789-0521b8f66c8b', 'Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e') ('532e7133-9796-6686-991e-647e34dfef5c', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '308136', 'amLODIPine 2.5 MG Oral Tablet', datetime.date(2018, 6, 2), datetime.date(2018, 6, 1), None, 'Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4', 'Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d') +('5649f6c0-5119-1447-0f1f-5177ba1732ff', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '860975', '24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet', datetime.date(2018, 7, 27), datetime.date(2018, 7, 1), None, 'Patient/a5b171a7-9b28-20e7-86a7-936ecbf55f36', 'Encounter/c4605953-3103-ede6-e0c0-e0588e6f019e') +('652f644f-22f8-17f9-7fd4-e5955c0913d1', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '749762', 'Seasonique 91 Day Pack', datetime.date(2018, 7, 10), datetime.date(2018, 7, 1), None, 'Patient/51032f44-d514-26e9-3e85-e956561c076e', 'Encounter/d73ed087-e0ae-78e0-7a05-1bac1060c476') ('71cb13a5-23b9-bb80-26fe-d05f09ad8ee9', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '314076', 'lisinopril 10 MG Oral Tablet', datetime.date(2018, 6, 13), datetime.date(2018, 6, 1), None, 'Patient/3cf7af45-2bee-aa9c-d524-40b487149d60', 'Encounter/d2782687-6885-037c-957d-579fbd681d2a') ('73725e09-3f65-5786-03ea-4030f420773c', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '1860491', '12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule', datetime.date(2018, 7, 28), datetime.date(2018, 7, 1), 'Every twelve hours as required (qualifier value)', 'Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7', 'Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0') ('74eaab96-3b9b-beff-74c8-617533d0c3bb', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '314076', 'lisinopril 10 MG Oral Tablet', datetime.date(2018, 6, 14), datetime.date(2018, 6, 1), None, 'Patient/267fc42d-cd9e-8527-1f9e-887fe7776147', 'Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f') ('773dcdd0-f950-143a-5a6c-971fd5124f22', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '310965', 'Ibuprofen 200 MG Oral Tablet', datetime.date(2018, 7, 19), datetime.date(2018, 7, 1), 'Take as needed.', 'Patient/ad3ed58a-5645-af0a-eeca-ab543123a8aa', 'Encounter/03e34b19-2889-b828-792d-2a83400c55be') ('8ec9f68f-f1ae-83ef-e77a-5b680a3a85a6', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '310798', 'Hydrochlorothiazide 25 MG Oral Tablet', datetime.date(2018, 6, 14), datetime.date(2018, 6, 1), None, 'Patient/267fc42d-cd9e-8527-1f9e-887fe7776147', 'Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f') +('9034a4e4-9803-268c-d3be-c4b386f654ed', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '855332', 'Warfarin Sodium 5 MG Oral Tablet', datetime.date(2018, 7, 9), datetime.date(2018, 7, 1), None, 'Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183', 'Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3') ('9105515b-33e2-82ad-72e3-64acc0d8012c', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '310798', 'Hydrochlorothiazide 25 MG Oral Tablet', datetime.date(2018, 7, 15), datetime.date(2018, 7, 1), None, 'Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0', 'Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970') ('932d6470-6774-a36b-fb63-c6577b3d91ae', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '2563431', 'aspirin 81 MG Oral Capsule', datetime.date(2018, 7, 10), datetime.date(2018, 7, 1), 'Take as needed.', 'Patient/6385ddd7-2639-6505-3789-0521b8f66c8b', 'Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e') +('96ab6ece-175b-2811-35c4-30b8119cdcff', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '860975', '24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet', datetime.date(2018, 7, 7), datetime.date(2018, 7, 1), None, 'Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8', 'Encounter/dc5ed645-3979-e765-3e03-6ba2173027c3') ('9f49f781-e443-633b-b0d1-ca392903337b', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '314076', 'lisinopril 10 MG Oral Tablet', datetime.date(2018, 7, 2), datetime.date(2018, 7, 1), None, 'Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22', 'Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9') +('a34e6e99-2cf9-6f0b-8f1f-1af5742e9a99', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '313782', 'Acetaminophen 325 MG Oral Tablet', datetime.date(2018, 6, 17), datetime.date(2018, 6, 1), None, 'Patient/7f941bcc-e7b2-99e1-585f-129d0ef1c13d', 'Encounter/65f8fdca-a949-80a0-8072-094e9aaee474') +('a7a6a67e-de2a-44b5-97f2-a18f642a686b', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '1000126', '1 ML medroxyPROGESTERone acetate 150 MG/ML Injection', datetime.date(2018, 6, 28), datetime.date(2018, 6, 1), None, 'Patient/c20e5afd-30df-ac3d-6684-cc29438a9bc4', 'Encounter/b864bcd8-14e0-8bec-b7cc-f8629d91470e') +('c0735493-29ed-9090-197d-b632d98627b8', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '748879', 'Levora 0.15/30 28 Day Pack', datetime.date(2018, 6, 15), datetime.date(2018, 6, 1), None, 'Patient/7bf52d54-0d2a-265a-15aa-eeed7aaf4af6', 'Encounter/ba84689e-2f9f-7cea-af1f-d69ffdd3a3eb') +('c1255c32-5173-bf6e-4a31-8d30806e253e', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '205923', '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]', datetime.date(2018, 7, 29), datetime.date(2018, 7, 1), None, 'Patient/7cef0e6f-9aea-4079-dfc6-18a96454708e', 'Encounter/d735c414-9dd3-c9b1-285c-8da79a7fbbdf') ('c3f0e356-0f60-de8e-4512-2bdee1c8c2ff', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '630208', 'albuterol 0.83 MG/ML Inhalation Solution', datetime.date(2018, 6, 8), datetime.date(2018, 6, 1), 'Take as needed.', 'Patient/6a883108-7b87-120b-d163-d369336e04e5', 'Encounter/2b1ee164-6c87-420d-a9e2-6c235ebeef71') ('d2e654cd-2b6b-fab2-02fc-c17034e9b9b4', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '349094', 'budesonide 0.125 MG/ML Inhalation Suspension', datetime.date(2018, 6, 8), datetime.date(2018, 6, 1), 'Take as needed.', 'Patient/6a883108-7b87-120b-d163-d369336e04e5', 'Encounter/2b1ee164-6c87-420d-a9e2-6c235ebeef71') +('db7d84ad-cd33-c788-d036-241388382ada', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '106892', 'insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]', datetime.date(2018, 7, 2), datetime.date(2018, 7, 1), None, 'Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22', 'Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9') +('e9d53e1d-3a31-4b3a-cb64-6382e74b5c09', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '108515', '1 ML tacrolimus 5 MG/ML Injection', datetime.date(2018, 6, 2), datetime.date(2018, 6, 1), None, 'Patient/9c8d8539-0b1e-73e2-b64f-83f1ea601fa4', 'Encounter/f2752dd7-1bf1-739d-dd8c-40122d0b63bc') ('ed67af7e-e0cc-ef33-4ad2-59a9bd1d1210', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '314076', 'lisinopril 10 MG Oral Tablet', datetime.date(2018, 7, 15), datetime.date(2018, 7, 1), None, 'Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0', 'Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970') +('eeafadf7-232b-3d11-4023-93695bfefd1e', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '205923', '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]', datetime.date(2018, 7, 14), datetime.date(2018, 7, 1), None, 'Patient/26a3984f-b2a8-e67f-7abc-ff147a0e6e35', 'Encounter/79d8f213-7847-646b-8a66-5da208cc1c27') +('f404f354-423d-be8a-24d6-0773a84e3dd3', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '205923', '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]', datetime.date(2018, 7, 16), datetime.date(2018, 7, 1), None, 'Patient/50f8b42e-17a6-e932-8546-da94004c597c', 'Encounter/37604257-be1a-120f-81ee-336f81603f92') ('fe8af482-845f-2876-5f93-adfad40a6513', 'stopped', 'order', 'community', 'http://terminology.hl7.org/CodeSystem/medicationrequest-category', None, 'http://www.nlm.nih.gov/research/umls/rxnorm', '313820', 'Acetaminophen 160 MG Chewable Tablet', datetime.date(2018, 7, 15), datetime.date(2018, 7, 1), 'Take as needed.', 'Patient/dffa62dc-8ec2-1cd6-ee75-f9156a5283fe', 'Encounter/11381dc6-0e06-da55-0735-d1e7bbf8bb35') diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv index 1f2a97e9..0c01d794 100644 --- a/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv @@ -1,5 +1,13 @@ cnt,status,intent,authoredon_month,medication_display -14,,,, -14,,order,, -14,stopped,,, -14,stopped,order,, +27,,,, +27,,order,, +26,stopped,,, +26,stopped,order,, +15,,,2018-07-01, +15,,order,2018-07-01, +15,stopped,,2018-07-01, +15,stopped,order,2018-07-01, +12,,,2018-06-01, +12,,order,2018-06-01, +11,stopped,,2018-06-01, +11,stopped,order,2018-06-01, diff --git a/tests/test_templates.py b/tests/test_templates.py index 146d09fd..c824cd01 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -37,12 +37,13 @@ def test_codeable_concept_denormalize_all_creation(): SELECT DISTINCT s.id AS id, s.row, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM flattened_rows AS s, - UNNEST(s.code_col.coding) AS u (codeable_concept) + UNNEST(s.code_col.coding) AS u (coding) ), --noqa: LT07 union_table AS ( @@ -51,7 +52,8 @@ def test_codeable_concept_denormalize_all_creation(): row, code_system, code, - display + display, + userSelected FROM system_code_col_0 ) @@ -60,7 +62,8 @@ def test_codeable_concept_denormalize_all_creation(): row, code, code_system, - display + display, + userSelected FROM union_table ); """ @@ -83,14 +86,15 @@ def test_codeable_concept_denormalize_filter_creation(): s.id AS id, 0 AS row, '0' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM source AS s, - UNNEST(s.code_col.coding) AS u (codeable_concept) + UNNEST(s.code_col.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://snomed.info/sct' + u.coding.system LIKE 'http://snomed.info/sct' ), --noqa: LT07 system_code_col_1 AS ( @@ -98,14 +102,15 @@ def test_codeable_concept_denormalize_filter_creation(): s.id AS id, 0 AS row, '1' AS priority, - u.codeable_concept.code, - u.codeable_concept.display, - u.codeable_concept.system AS code_system + u.coding.code, + u.coding.display, + u.coding.system AS code_system, + u.coding.userSelected FROM source AS s, - UNNEST(s.code_col.coding) AS u (codeable_concept) + UNNEST(s.code_col.coding) AS u (coding) WHERE - u.codeable_concept.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' + u.coding.system LIKE 'http://hl7.org/fhir/sid/icd-10-cm' ), --noqa: LT07 union_table AS ( @@ -115,7 +120,8 @@ def test_codeable_concept_denormalize_filter_creation(): priority, code_system, code, - display + display, + userSelected FROM system_code_col_0 UNION SELECT @@ -124,7 +130,8 @@ def test_codeable_concept_denormalize_filter_creation(): priority, code_system, code, - display + display, + userSelected FROM system_code_col_1 ), @@ -136,6 +143,7 @@ def test_codeable_concept_denormalize_filter_creation(): code, code_system, display, + userSelected, priority, ROW_NUMBER() OVER ( @@ -143,7 +151,8 @@ def test_codeable_concept_denormalize_filter_creation(): ORDER BY priority ASC ) AS available_priority FROM union_table - GROUP BY id, row, priority, code_system, code, display + GROUP BY + id, row, priority, code_system, code, display, userSelected ORDER BY priority ASC ) @@ -151,7 +160,8 @@ def test_codeable_concept_denormalize_filter_creation(): id, code, code_system, - display + display, + userSelected FROM partitioned_table WHERE available_priority = 1 ); diff --git a/tests/testbed_utils.py b/tests/testbed_utils.py index f68f5692..49fa0806 100644 --- a/tests/testbed_utils.py +++ b/tests/testbed_utils.py @@ -14,7 +14,7 @@ class LocalTestbed: def __init__(self, path: Path, with_patient: bool = True): self.path = path self.indices: dict[str, int] = {} - self.ids: dict[str, str] = {} # cache of registered IDs, for convenience + self.ids: dict[str, set[str]] = {} # cache of registered IDs, for convenience if with_patient: # Add a basic patient that other resources can link to. @@ -50,6 +50,7 @@ def add_condition(self, row_id: str, recorded: str = "2020", **kwargs) -> None: self.add( "condition", { + "resourceType": "Condition", "id": row_id, "recordedDate": recorded, **kwargs, @@ -66,6 +67,7 @@ def add_document_reference( self.add( "documentreference", { + "resourceType": "DocumentReference", "id": row_id, "context": context, **kwargs, @@ -81,6 +83,7 @@ def add_encounter( self.add( "encounter", { + "resourceType": "Encounter", "id": row_id, "subject": {"reference": f"Patient/{patient}"}, "period": period, @@ -142,11 +145,63 @@ def add_etl_completion_encounters( }, ) + def add_medication_request( + self, + row_id: str, + mode: str = "inline", + codings: list[dict] | None = None, + **kwargs, + ) -> None: + """Adds a MedicationRequest with all the SQL-required fields filled out""" + if codings is None: + codings = [ + { + "code": "2623378", + "system": "http://www.nlm.nih.gov/research/umls/rxnorm", + } + ] + concept = {"coding": codings} + + match mode: + case "inline": + kwargs["medicationCodeableConcept"] = concept + case "contained": + kwargs["medicationReference"] = {"reference": "#contained"} + kwargs["contained"] = [ + { + "resourceType": "Medication", + "id": "contained", + "code": concept, + } + ] + case "external": + kwargs["medicationReference"] = { + "reference": f"Medication/med-{row_id}" + } + self.add( + "medication", + { + "resourceType": "Medication", + "id": f"med-{row_id}", + "code": concept, + }, + ) + case "custom": + pass # caller knows what they want + case _: + raise ValueError(f"Bad mode '{mode}'") + + self.add( + "medicationrequest", + {"resourceType": "MedicationRequest", "id": row_id, **kwargs}, + ) + def add_observation(self, row_id: str, effective: str = "2020", **kwargs) -> None: """Adds a Observation with all the SQL-required fields filled out""" self.add( "observation", { + "resourceType": "Observation", "id": row_id, "effectiveDateTime": effective, **kwargs, @@ -160,6 +215,7 @@ def add_patient( self.add( "patient", { + "resourceType": "Patient", "id": row_id, "birthDate": birth_date, "gender": gender,